Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- thisyear=2018
- birthyear=int(input('Enter your year of birth: '))
- if thisyear>birthyear:
- print(thisyear-birthyear)
- elif thisyear<birthyear:
- print("Wrong value entered")
- else:
- print("Welcome to the world kiddo")
Add Comment
Please, Sign In to add comment