#!/usr/bin/env python3

# Block 1: Define a variable
x = 10
print(f"x is {x}")

# Block 2: Use that variable
y = x * 2
print(f"y = x * 2 = {y}")

# Block 3: Use both
total = x + y
print(f"total = {x} + {y} = {total}")
