Define Greatestdef greatest(a,b,c): if a > b and a > c: print(a) else: if b > c: print(b) else: print(c)greatest(20,23,15)
Post a Comment