Files
2022-05-12 04:21:40 +09:00

11 lines
102 B
Python

a = 10
b = 20
for _ in range(10000):
a > b
a >= b
a < b
a <= b
a == b
a != b