# first programs, showing off some math
print("Hello")
# shows we use some non-standard math characters 
print(3 * 4)
# shows divide does not work as expected --- using integer numbers
print(5 / 2)
# now it does --- using real valued numbers
print(5.0 / 2.0)
# shows how to get the remainder of the divide
print(5 % 2)
# shows order of operations works as expected
print(3 + 5 * 2)
# shows "%" has the precedence of * and /
print(3 + 5 % 2)

# OUTPUT
Hello
12
2
2.5
1
13
4
