I need the username to be the first 3 letters of the users name and their age, e.g. Jack age 18 would be Jac18
name = (input('what is your name'))
age = (input('what is your age'))
username = (name+age)
what do i need to add or change to make the username only contain 3 letters of the name and the age.