import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

class Crypto {
	public static void main (String[] args)
		throws IOException
	{
		String encrypted = "tearsr svyeems# @#7aa%bee c";
		StringBuilder decrypted = new StringBuilder();
		
		BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
		int password = Math.abs(in.readLine().trim().hashCode())/10000000;
		
		for (int i = 1; i != 29; i = (2667 + i) % 64 )
			decrypted.append(encrypted.charAt((password + i) % 27));
		
		System.out.println(decrypted.toString().replace("v#r", "ge"));
		
		in.close();
	}
}