diff --git a/Python greater b/Python greater new file mode 100644 index 0000000..3ca2254 --- /dev/null +++ b/Python greater @@ -0,0 +1,4 @@ +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")