Add tests/echo.c
parent
9b903d6524
commit
90afbb63fb
|
@ -0,0 +1,9 @@
|
||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
|
int main(void) {
|
||||||
|
int input;
|
||||||
|
scanf("%d", &input);
|
||||||
|
printf("%d\n", input);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in New Issue