9 lines
149 B
C
9 lines
149 B
C
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
int main(void) {
|
||
|
printf("%c\n",48+7);
|
||
|
printf("%c\n",97-32);
|
||
|
printf("%c\n",97);
|
||
|
return EXIT_SUCCESS;
|
||
|
}
|