aboutsummaryrefslogtreecommitdiff
path: root/problems/starshiplaunchcodes/attachments/template.c
blob: 228b009b73112f656e874fc402d62ab62d5f1889 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <stdbool.h>

int main()
{
    int S;
    scanf("%d", &S);

    // Write an answer using printf(). DON'T FORGET THE TRAILING \n
    // To debug: fprintf(stderr, "Debug messages...\n");

    printf("code(s)\n");

    return 0;
}