We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0486f6e commit 39b515bCopy full SHA for 39b515b
max.py
@@ -0,0 +1,11 @@
1
+def maximum(a, b):
2
+
3
+ if a >= b:
4
+ return a
5
+ else:
6
+ return b
7
8
+n1 = int(input("Enter First Number: ")
9
+n2 = int(input("Enter Second Number: ")
10
11
+print(maximum(n1,n2))
0 commit comments