Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Ganesh-Chandran005 authored Nov 13, 2024
1 parent 394d84e commit 5e67532
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions Day-5/ganesh5.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
'''AUTHOR:GANESH
13/11/24
Functions'''


def smallest(num1,num2):
if num1>num2:
print(num1,"is Greater")
elif num2>num1:
print(num2,"is Greater")
else:
print("Both numbers are equal")

num1=int(input("Enter a number:"))
num2=int(input("Enter a number:"))

smallest(num1,num2)

0 comments on commit 5e67532

Please sign in to comment.