#include <stdio.h>
#include <string.h>

static char modpow(n, e, m)
{
	int r = 1; // n to the 0 is 1.
	while (e--)
		r = (r * n) % m;
	
	return (char)r;
}

int main(void)
{
	char text[100];
	fgets(text, sizeof(text), stdin);
	
    for (size_t j = 0, n = strlen(text); j < n; j++)
    {
    	printf("before: %c (%i); ", text[j], text[j]);
    	text[j] += 10;
    	printf("after: %c (%i)\n", text[j], text[j]);
    }
    
    printf("Result: %s\n", text);
}
