Skip to content

Commit e7b27c7

Browse files
Merge pull request seeditsolution#221 from suny55/patch-1
Greater Number
2 parents 8a50961 + c7b1998 commit e7b27c7

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)