9 lines
197 B
Text
9 lines
197 B
Text
let a = input('Enter value of a: ')
|
|
let b = input('Enter value of b: ')
|
|
|
|
if a < b:
|
|
print 'a is less than b'
|
|
elif a > b:
|
|
print 'a is greater than b'
|
|
elif a == b:
|
|
print 'a is equal to b'
|