greatest among three numbers in python Get link Facebook X Pinterest Email Other Apps March 28, 2022 greatest among three numbers in python a=int(input()) b=int(input()) c=int(input()) if(a>b and a>c): print(a) elif(b>a and b>c): print(b) else: print(c) Get link Facebook X Pinterest Email Other Apps Comments
Comments
Post a Comment