From e8a9f073dd8cc3587f1d22af35455b5e609d987c Mon Sep 17 00:00:00 2001 From: drunkendog Date: Sat, 16 Sep 2023 20:51:03 +0100 Subject: [PATCH] Add benchmark/benchmark-program-1.c --- benchmark/benchmark-program-1.c | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 benchmark/benchmark-program-1.c diff --git a/benchmark/benchmark-program-1.c b/benchmark/benchmark-program-1.c new file mode 100644 index 0000000..99565c4 --- /dev/null +++ b/benchmark/benchmark-program-1.c @@ -0,0 +1,9 @@ +#include + +int main(void) { + int input; + scanf("%d", &input); + printf("%d\n", input + 123); + + return 0; +} \ No newline at end of file