# Kontrolne strukture

if 3 < 5:
    print ("Res je.")
    print ("Pa še to.")
else:
    print ("Ni res.")
    print ("Ena.")
print ("Dva.") # to se izpiše v vsakem primeru

s = 5
if s % 100 == 1:
    print (str(s) + " limona")
elif s == 2:
    print ("2 limoni")
elif s == 3 or s == 4:
    print (str(s) + " limone")
else:
    print (str(s) + " limon")

# Zanke
for i in [1,3,4,10,20]:
    print(i)

for i in "Ljubljana je glavno mesto":
    print(i)

for i in range(1,10):
    print(i)

for i in range(0,100,7):
    print(i)

for i in range(10,1,-1):
    print(i)

# Zanka while
v = 0
i = 1
while i < 100:
    v += i
    if i == 7: break
    i += 2
