object Main extends App {
val nums = """(\d+) (\d+) (\d+)""".r
// io.Source.fromString(input).getLines()
io.Source.stdin.getLines().drop(1).map {
case nums(c, k, w) => c.toInt * w.toInt }.map(b => if (b) "yes" else "no").foreach(println)
}
Zrozumiałe? Pytania? Dałoby się to napisać prościej i/lub krócej? Chętny/-a zrozumieć, o co chodzi w temacie? Służę pomocą!