aboutsummaryrefslogtreecommitdiff
path: root/problems/gameofquarters/attachments/template.c
blob: 24ec6b655168bfacbe0a42a9fa9167abef3d7fe4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <stdbool.h>

int main()
{
    int number_of_rounds;
    scanf("%d", &number_of_rounds);
    for (int i = 0; i < number_of_rounds; i++) {
        char alice_sequence[4];
        char bob_sequence[4];
        char round_tosses[21];
        scanf("%s%s%s", alice_sequence, bob_sequence, round_tosses);
    }

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

    printf("WINNER!\n");

    return 0;
}