char pomeri(char c, int n){ if(islower(c)) return (c-'a'+n)%26+'a'; else if(isupper(c)) return (c-'A'+n)%26+'A'; else return c; }