I need help with this, I dont have money so please do this for free.
name = input("What is your name:")
print("Hello,", name)
age = int(input("How old are you:"))
print("You are", age, "years old")
country = input("Where do you live:")
print("You live in", country, ", it is a great place")
print("Hello,", age, "years old", name, "you live in", country)
last_name = input("What is your last name:")
print(name, last_name)
Comments
Leave a comment