#19379: a009 anwser AC


joe951007 (10842510)


 #include<iostream>
#include<stdlib.h>
using namespace std;
int main()
{
string s;
while(getline(cin,s))
{
for(int i=0; i<s.size(); i++)
{
char c=s[i]-7;
cout << c ;
}
cout << endl ;
}
("pause");
}

 

要小心這裡不能用system

以上!