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

10 lines
213 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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)