Add benchmark/benchmark-program-1.c
Tests / Run-Tests (push) Successful in 4s Details

multiline-output
drunkendog 2023-09-16 20:51:03 +01:00
parent a17891fa09
commit e8a9f073dd
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 + 123);
return 0;
}