Wednesday, February 27, 2019

Maximum of given 3 numbers using In-Built Funtion - Python3

a=int(input('Enter the number A: '))
b=int(input('Enter the number B: '))
c=int(input('Enter the number C: '))

d=max(a,b,c)
print('Max Of 3 number is '+str(d))

ScreenShot:



No comments:

Post a Comment