import * as fs from 'fs'; let inputs = ''; let inputArray: string[]; let currentIndex = 0; let outputBuffer = ''; const flush = () => console.log(outputBuffer.trim()); const next = () => inputArray[currentIndex++]; const nextBigInt = (): BigInt => BigInt(next()); const nextBigInts = (length: number): BigInt[] => Array.from({ length: length }, () => nextBigInt()); const nextNum = () => +next(); const nextNums = (length: number): number[] => Array.from({ length: length }, () => nextNum()); const nexts = (length: number): string[] => Array.from({ length: length }, () => next()); function print(out: string | number | bigint): void; function print(out: Array, separator: string): void; function print(out: string | number | bigint | Array, separator?: string): void { if (Array.isArray(out)) { outputBuffer += out.join(separator); } else { outputBuffer += out; } } function println(out: string | number | bigint): void; function println(out: Array, separator: string): void; function println(out: string | number | bigint | Array, separator?: string) { if (Array.isArray(out)) { print(out, separator || ''); } else { print(out); } print('\n'); } inputs = fs.readFileSync('/dev/stdin', 'utf8'); inputArray = inputs.split(/\s/); main(); flush(); function main() { const n = nextNum(); const s = next(); const pos = s.indexOf('c'); println(`UEC${s.slice(pos + 1)}`); } function minBigInt(x: BigInt, y: BigInt): BigInt { if (x > y) { return y; } else { return x; } }