OneCompiler

Health

159


Name = input("please enter your name : ")
print("welcome" , Name)

Age = int(input("please enter your Age : "))

if Age > 20:
print("you can enter ")
elif Age < 20:
print("you cant enter")
else:
print("no you cant enter")

weight = float(input("please enter your weight : "))

if weight > 100.00:
print("your so fat")
print(weight)

elif weight < 100.00:
print("medium")
print(weight)
elif weight < 70.00:
print("thin")
print(weight)
else:
print("try again")

height = float(input("please enter your height : "))

if height > 180.4:
print("tall")
print(height)

elif height < 176.5:
print("medium")
print(height)

elif height < 160.00:
print("short")
print(height)
else:
print("try again")