Browse Source

问题 A: Branch on Condition - Small, Large, or Equal

webturing 4 years ago
parent
commit
6ff12267ed
1 changed files with 8 additions and 0 deletions
  1. 8 0
      A.py

+ 8 - 0
A.py

@@ -0,0 +1,8 @@
+import math
+a, b = map(int, input().strip().split())
+if a>b:
+    print('a > b')
+elif a<b:
+    print('a < b')
+else:
+    print('a == b')