# Step 1: Initialize x x = 5 SHOW # Step 2: Initialize y y = 3 SHOW # Step 3: Add x and y z = x + y SHOW # Step 4: Double z result = z * 2 SHOW