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.
2 parents 8a50961 + c7b1998 commit e7b27c7Copy full SHA for e7b27c7
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