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