📅  最后修改于: 2022-03-11 14:46:35.187000             🧑  作者: Mango
# we make the input to take the name of user
name = input("inter your name : ")
# this input to take the age
age = input("inter your age : ")
# the print to say to user hi and this is your age
print(f"hi {name} your age is {age}")