6 lines
101 B
Python
6 lines
101 B
Python
|
value = input('How old are you?:')
|
||
|
|
||
|
year = 1
|
||
|
|
||
|
print("Next year you will be", int(value) + int(year))
|