A Way For Learning

Program to take input from user in python

No comments
#program to take input from user
name=raw_input("what is ur name")
age=raw_input("what is ur age")
age=int(age)
year=str(2016-age)
print(name + " is born in" + year +" ,present age is" + str(age))

No comments :

Post a Comment