Add benchmark/benchmark-program-2.c
Tests / Run-Tests (push) Successful in 3s Details
Benchmarks / Run-Benchmarks (push) Successful in 5m14s Details

multiline-output
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;
}