#include <stdio.h> int main(void) { char c; c=getchar(); printf("%c%c%c\n",c==0?' ':c-1,c,c==127?' ':c+1); return 0; }