x = 1
if x > 2
	puts "x greater than 2"
elsif x <= 2 and x != 0
	puts "x is 1"
else
	puts "i cant guess number"
end