summaryrefslogtreecommitdiff
path: root/progs/a71.py
blob: d77ef0b33a2afeb81f0107060b1d5b6d67fc4bd5 (plain)
1
2
3
4
5
6
7
8
def max_of_three(num1,num2,num3): 
    if (num1 >= num2) and (num1 >= num3):
       lnum = num1
    elif (num2 >= num1) and (num2 >= num3):
       lnum = num2
    else:
       lnum = num3
    return lnum