def encrypt(s):
ret = ''
for i in range(len(s)):
ret += chr(ord(s[i]) - 8)
return ret
while 1:
s = input('>')
print('Decrypt("{}"/*{}*/)'.format(encrypt(s), s))
char* Decrypt(char string[])
{
int length = strlen(string);
char* tempstring = new char[length + 1];
for (int i = 0; i < length; i ++)
tempstring[i] = string[i] + 8;
tempstring[length] = 0;
return tempstring;
}