budget1 = 50 * 5 print ("budget1 "+budget1) abigail = 11 ryan = 10 budget2 = abigail * Ryan print ("budget2 "+budget2) hot_day = "20"< 15 print (hot_day) if hot_day == True: print("It is really hot out there" else: print("It is cool out there") print("I live in "+ hometown) hometown = "Moscow" def greeting(first_name, last_name): print("Hello {first_name} {last_name}") greeting("Gamas")
If you are able to fix all the problems, the program will print the following
budget1 250 budget2 110 False It is cool out there I live in Moscow Hello Gamas Chang