a = 3
b = 4
# construct c=a+b
c \
= \
a \
+ \
b
print c
# the output is 7
Figure 2