mirror of
https://github.com/Kiritow/OJ-Problems-Source.git
synced 2024-03-22 13:11:29 +08:00
15 lines
198 B
C++
15 lines
198 B
C++
|
#include<stdio.h>
|
||
|
int main()
|
||
|
{
|
||
|
int n;
|
||
|
int i;
|
||
|
char m[12];
|
||
|
scanf("%d",&n);
|
||
|
while(n--)
|
||
|
{
|
||
|
scanf("%s",m);
|
||
|
printf("6%s\n",m+6);
|
||
|
}
|
||
|
return 0;
|
||
|
}
|