Skip to content

Commit c7b1998

Browse files
authored
Greater Number
Python program to print the greatest of two numbers using the built-in function
1 parent 229f8d6 commit c7b1998

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Greater Number

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)