Skip to content

Instantly share code, notes, and snippets.

View jasoriya's full-sized avatar

Shreyans Jasoriya jasoriya

  • Northeastern University
  • Boston, USA
View GitHub Profile
name = input("Give me your name")
age = input("What is your age?")
print ("Your name is " + name + " and age is " + age + ".")
current_year = 2017
year_age_100 = (100 - 21) + current_year
print ("You will turn 100 in the year" + year_age_100)