Run ID:97288
提交时间:2024-11-12 16:07:16
#include<bits/stdc++.h> using namespace std; int main(){ char s[10000]; gets(s); int len=strlen(s); for(int i=0;i<len;i+=3){ cout<<s[i]; } return 0; }