Files

6 lines
103 B
C

#include <stdlib.h>
#include <stdio.h>
int main(void){
printf("%c\n",'5'+2);
return EXIT_SUCCESS;
}