We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d34fc1 commit bd94477Copy full SHA for bd94477
greattwono
@@ -0,0 +1,7 @@
1
+# Python Program to find the largest of two numbers using an arithmetic operator
2
+a = int(input("Enter the first number: "))
3
+b = int(input("Enter the second number: "))
4
+if(a - b > 0):
5
+ print(a, "is greater")
6
+else:
7
+ print(b, "is greater")
0 commit comments