#include int main(){ char c = getchar(); if (c>='a' && c <='x'){ c = c + 2; putchar(c); } else { printf("error\n"); }}