Skip to content

Instantly share code, notes, and snippets.

View Saketh143's full-sized avatar

Saketh Saketh143

View GitHub Profile
name=input("give me your name: ")
print("you entered name is" + name)
age= int(input("enter your age:"))
age= (2020-age)+100
n=input("how many times u want message output:")
n=int(n)
print(n*("\nyou need %d years to become 100" %(age)))
name=input("give me your name: ")
print("you entered name is" + name)
age= int(input("enter your age:"))
age=100-age
n=input("how many times u want message output:")
n=int(n)
print(n*("\nyou need %d years to become 100" %(age)))