7 lines
110 B
C
7 lines
110 B
C
|
|
#include <stdio.h>
|
||
|
|
#include <stdlib.h>
|
||
|
|
|
||
|
|
int main(void) {
|
||
|
|
printf("%c\n", "0" + 3 + 4);
|
||
|
|
return EXIT_SUCCESS;
|
||
|
|
}
|