Files
learning-to-code/python/birthday.py

6 lines
101 B
Python
Raw Normal View History

2019-07-02 00:03:07 -04:00
value = input('How old are you?:')
year = 1
print("Next year you will be", int(value) + int(year))