name = input( "whats your name?") times = int (input( "How many times?")) print(name * times) height = float (input("What is your height?")) weight = float (input("What is your weight?")) print ("Your BMI is", weight/height**2)