#Version 2 - Conditional Statement username = input("Whats your username? ") age = int(input("What's Lebron James's age? ")) if age <= 23: print ("Yeah, in the 90s! Wrong!") elif age > 40 and age < 42: print ("Correct, Congratulations!") elif age <60: print ("Correct! Sikeeeee you're nowhere near loser! ") elif age <100: print ("Die!") print ("The program has ended")