Add benchmark/benchmark-program-2.c

This commit is contained in:
drunkendog 2023-09-18 13:41:08 +01:00
parent d26610b855
commit 5e5e8f5fdf
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
#include <stdio.h>
int main(void) {
int input;
scanf("%d", &input);
printf("%d\n", input);
return 0;
}