# これは入力チェックのための submit です。 line = input() n = int(line) assert(1 <= n <= 10 ** 18) assert(str(n) == line) print('OK!')