I've been checking out how to do the below question without an if else condition, spent almost a day. Is it possible to do this without an if else?
Check if area is greater than or equal to 15, then print "big place!" or if area is greater than 10 but less than 15, then print "medium size, nice!" or print "pretty small".
I can think of a while and breaking it after first print for now.