diff options
Diffstat (limited to 'problems/livingorganism/attachments/template.c')
-rw-r--r-- | problems/livingorganism/attachments/template.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/problems/livingorganism/attachments/template.c b/problems/livingorganism/attachments/template.c new file mode 100644 index 0000000..7c0c472 --- /dev/null +++ b/problems/livingorganism/attachments/template.c @@ -0,0 +1,17 @@ +#include <stdlib.h> +#include <stdio.h> +#include <string.h> +#include <stdbool.h> + +int main() +{ + int r; + scanf("%d", &r); + + // Write an answer using printf(). DON'T FORGET THE TRAILING \n + // To debug: fprintf(stderr, "Debug messages...\n"); + + printf("duration\n"); + + return 0; +} |