4 lines
136 B
Python
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))
|