Code viewer for World: Activity 1.3
# ============================================================
# SECTION 3 — Maths and Expressions
# ============================================================

x = 10
y = 3

print(x + y)        # 13
print(x - y)        # 7
print(x * y)        # 30
print(x / y)        # 3.333...
print(x // y)       # 3   (whole number only)
print(x % y)        # 1   (remainder)
print(x ** y)       # 1000
print((2 + 3) * 4)  # 20  (brackets first — BIMDAS)

# TASK: Using your age and height variables from Section 2,
#       calculate how many months you have been alive (age x 12),
#       multiply that by your height, and print the result with a label.