#Python program to find the max of 2 nmbers (using if) a=int(input(“Enter first number: “)) b=int(input(“Enter second number: “)) if a>b: print(a,’is the greater number’) elif b>a: print(b,’is the greater number’) else: print(‘Both the numbers are same’) #Python program to find the max of 2 numbers (using function) a=int(input(“Enter first number: “)) b=int(input(“Enter second number: […]