# Sestejmo stevila od 1 do 100
vsota = 0
i = 1
while i <= 100:
    vsota += i
    i += 1
print ("Vsota je {0}".format(vsota))
