fun main() { val (n, k) = readInts() for (i in 0 until n) { print("RGB"[i % 3]) } println() } fun readInts() = readln().split(" ").map { it.toInt() }