#include<bits/stdc++.h> using namespace std; void work(){ char ch=getchar(); if(ch=='\n')return; work(); putchar(ch); } int main(){ work(); }
传送门