# これは制約チェックのための submit です n_str = input() n = int(n_str) assert 1 <= n <= 2 * 10**5 assert str(n) == n_str print("OK!")