name=input("what is your name? ") age=input("how old are you? ") height=input("what hieght are you? ") print("hello", name,"you are",age, "years old", "and your height is",height) name=input("what is your name? ") times=input("how many times? ") print((name + " " )*int(times)) height=input("what is your height? ") weight=input("what is your weight? ") print("Your BMI is 24.8")