Write a Python script that prompts for and obtains the age (in years) of the user, and then displays the message “You are an adult” if the age was 18 or over. Irrespective of whether the user was an adult or not, the script then displays the message “Bye!” BEGIN PRINT "Enter your age" GET age IF age > = 18 PRINT "You are old" ELSE PRINT "Grow up" PRINT "Bye!" END BEGIN PRINT "You're in a guessing game." PRINT "Guess a number between 1 to 5 inclusive" Get GuessNum IF GuessNum == targetValue PRINT "Congrats you're a winner" ELSE PRINT " Loser!" PRINT "The target number was" + targetValue END BEGIN PRINT "Enter your age" GET age IF age > = 18 and age <= 65 PRINT "Sadly you gotta work" ELSE PRINT "Enjoy doing nothing" PRINT "Bye!" END BEGIN PRINT "Enter your age" GET age PRINT "Enter your life saving amount" GET money IF age >= 18 and money >= 30 PRINT "Enjoy your ciggy" ELSE PRINT "Too bad, time to quit" PRINT "Bye!" END age = int(input("Enter your age")) money = int(input("Enter your life saving amount")) if age >= 18 and money >=30: print("Enjoy your ciggy") else: print("Too bad, time to quit") print("Bye!")