Control Panel Master

back home



print("Hello, World, in < brackets>!") bracket = '<><>' print(bracket) print("I can calculate!") print("Give me a number:") num1 = float(input()) print("Give me another number:") num2 = float(input()) sum = num1 + num2 if num1 == 0: print("You gave me a zero as the first number!") print("The sum of " + str(num1) + " and " + str(num2) + " equals " + str(sum))