hellodecision.py

# hellodecisions.py # # Description: A simple program that decides whether you were born in a cool # year. # # Date: 07/10/2015 # Written By: D.Barry year = int(input("When were you born? ")) if year <= 1990 : print("You is super coolz!!!") else : print("Born in the wrong time!")