#include<stdio.h>
int main()
{char c;
while(1)
{c=getchar();
if(c=='Q'||c=='q')break;
putchar(c);
}
return 0;
匿名回答于2020-05-11 13:00:21