A = 4
B = 3

if B > A:
  print A # begin group
  print B
  print (A + B) # end group
A = 6 # not part of above group
print A 

Figure 7