python-by-example-150-chall.../challenges1-11/challenage-007.py

4 lines
136 B
Python
Raw Normal View History

2019-07-17 14:56:46 +08:00
name = input("enter your name : ")
age = int(input("enter your age : "))
print('{0} next birthday you will be {1}'.format(name, age+1))