Skip to content

Instantly share code, notes, and snippets.

@vikychoi
Last active November 5, 2017 03:29
Show Gist options
  • Save vikychoi/265c28da48042f1c7ac9ff23e4c668ab to your computer and use it in GitHub Desktop.
Save vikychoi/265c28da48042f1c7ac9ff23e4c668ab to your computer and use it in GitHub Desktop.
name = input("name input")
age = input("age input")
iteration = input("iteration")
iteration = int(iteration)
age = int(age)
year = 100 - age
for _ in range(iteration):
print(name, "u will be 100 years old after ", year, " years", end="")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment