summaryrefslogtreecommitdiff
path: root/assignments/4/main.py
blob: 110e1a05c9ce43e286ae65a12dffdb4a9acfe51e (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env python

first = 3
second = 5
if first < second:
    print("second is bigger")
else:
    print("but this time ")
print("first is bigger")