6 lines
123 B
C
6 lines
123 B
C
#include <stdio.h>
|
|
int main(){
|
|
char c;
|
|
scanf("%c", &c);
|
|
printf("%c %c\n%d %d %d", c, c + 1, c - 1, c, c + 1);
|
|
} |