Skip to content

Instantly share code, notes, and snippets.

@rjshekar90
Last active May 3, 2016 08:57
Show Gist options
  • Save rjshekar90/834c4ac0842686ea11c18006cdd34afe to your computer and use it in GitHub Desktop.
Save rjshekar90/834c4ac0842686ea11c18006cdd34afe to your computer and use it in GitHub Desktop.
# -*- coding: utf-8 -*-
# Calc age
name = raw_input("Name >>> ")
age = int(raw_input("Age >>> "))
year = 2016
while(age < 101):
balAge = 100 - age
print balAge
break
print "Year you will be turning 100 years is %d" % (year + balAge)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment