RosettaCodeData/Task/Integer-comparison/11l/integer-comparison.11l

10 lines
213 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
V a = Int(input(Enter value of a: ))
V b = Int(input(Enter value of b: ))
I a < b
print(a is less than b)
I a > b
print(a is greater than b)
I a == b
print(a is equal to b)