# Python program to find the greatest of two numbers using the built-in function num1 = int(input("Enter the first number: ")) num2 = int(input("Enter the second number: ")) print(max(num1, num2), "is greater")