x = 27 y = 15 print(f"{x} + {y} = {x+y}") print(f"{x} - {y} = {x-y}") print(f"{x} * {y} = {x*y}") # Printing can also be made as follows: print(x, "/", y, "=", (x / y))