[READ-ONLY] Mirror of https://github.com/shuuji3/competitive-programming. 馃洬 Codes submitted to competitive programming platforms
aizu-online-jadge aoj atcoder hackerrank leetcode
0

Configure Feed

Select the types of activity you want to include in your feed.

1a, b = map(int, input().split()) 2 3if a > b: 4 print(f'a > b') 5elif a < b: 6 print(f'a < b') 7else: 8 print(f'a == b')