We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 229f8d6 commit c7b1998Copy full SHA for c7b1998
Greater Number
@@ -0,0 +1,5 @@
1
+# Python program to find the greatest of two numbers using the built-in function
2
+
3
+num1 = int(input("Enter the first number: "))
4
+num2 = int(input("Enter the second number: "))
5
+print(max(num1, num2), "is greater")
0 commit comments