x = 10
y = 20

if (x > y) 
  print (" x is greater than y")
elsif (x < y ) 
  print ("x is less than y") 
else 
  print ("x and y are equal")
end
 
by