In [1]:
2+20
Out[1]:
4
3+4
In [3]:
3+56
Out[3]:
59
In [9]:
total = 0
for i in range(101):
    total = total + i
total
Out[9]:
5050
In [ ]:
In [ ]: