1x = 10
2y = 12
3
4# Output: x > y is False
5print('x > y is',x>y)
6
7# Output: x < y is True
8print('x < y is',x<y)
9
10# Output: x == y is False
11print('x == y is',x==y)
12
13# Output: x != y is True
14print('x != y is',x!=y)
15
16# Output: x >= y is False
17print('x >= y is',x>=y)
18
19# Output: x <= y is True
20print('x <= y is',x<=y)
1x + y = 19
2x - y = 11
3x * y = 60
4x / y = 3.75
5x // y = 3
6x ** y = 50625
1x > y is False
2x < y is True
3x == y is False
4x != y is True
5x >= y is False
6x <= y is True