marmoset-test-cases/benchmark/benchmark-program-2.c

9 lines
120 B
C
Raw Normal View History

2023-09-18 13:41:08 +01:00
#include <stdio.h>
int main(void) {
int input;
scanf("%d", &input);
printf("%d\n", input);
return 0;
}