# ChapterLogic/ifs.py # Logical operators: and( also &), or (also |), not #>>> if (5 > 0): # print('positive') #positive #>>> if (5 > 0 and 3 > 1): # print('ok') def main(): a,b,c = 3,4,5 print(a,b,c, 'max is') if (a > b and a > c): print(a) elif (b > a and b > c): print(b) elif (c > a and c > b): print(c) main()