a = 3
# spaces and comment
b = 4
# tab and comment
c = (a # continue on next line
+ b)
# a blank line follows
print c
# the output is 7
Figure 4