// yukicoder: No.192 合成数 // 2019.4.12 bal4u #include //// 高速入力 #if 1 #define gc() getchar_unlocked() #define pc(c) putchar_unlocked(c) #else #define gc() getchar() #define pc(c) putchar(c) #endif int main() { int c, p = gc(); while ((c = gc()) > ' ') pc(p), p = c; pc('4'), pc('\n'); return 0; }