#print("hello world") #print("snow tomorrow!!!! wooooo ") name = "edward" #print("Dont forget " + name + " to throw salt over your shoulder and light candles") #OperatorZ #String: addition + #Numbers: + - * / #Strange ones: // Integer division # ** Exponent 2 ** 3 # % Reminder finder, ak Modulo 7 % 3 = 1 #Conditionals #True or False #if a == 100: # print("a thing") #if condition: # print("do this") #else # print("something else") secondName = input() print("the second name is " + secondName) print("You are at school") print("A- Sleep B-Party C-Eat") choice = input() if choice == 'A': print("wake up tomorrow in a school encased in ice and no lights") print("hahahah im lazy") elif choice == 'B': print("many catz were drawn") elif choice =='C': print("sandwich time") else print("can't you read, it said A B or C")