python-by-example-150-chall.../challenges1-11/challenage-007.py
2019-07-17 09:56:46 +03:00

4 lines
136 B
Python

name = input("enter your name : ")
age = int(input("enter your age : "))
print('{0} next birthday you will be {1}'.format(name, age+1))