Skip to content

Instantly share code, notes, and snippets.

View bmarkons's full-sized avatar
💨

Marko Bogdanović bmarkons

💨
View GitHub Profile
# Coding folder
mkdir ~/dev
# vim
sudo apt-get install vim
# git
sudo apt-get install git
def timeleft(age):
return 2014+(100-int(age))
name=input("Tell me your name: ")
age=input("And age: ")
print(timeleft(age))
if int(age)<31:
print("Well, hello " + name + "\nYou are still pretty young. You will turn 100 years old in ",timeleft(age)," years. Enjoy your life. :) ")
elif int(age)>=100: