summaryrefslogtreecommitdiff
path: root/progs/a590.py
blob: dbca6c18732e55351ec92360763a8778ce06a6d5 (plain)
1
2
3
4
5
6
7
8
def min_of_three(a,b,c): 
      if (a <= b) and (a <= c): 
        smallest = a 
      elif (b <= a) and (b <= c): 
        smallest = b 
      else: 
        smallest = c 
      return smallest