blob: 4d569ff9b30ec1ee443eee492df7bd05d4af728b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <stdbool.h>
int main()
{
int n;
scanf("%d", &n);
for (int i = 0; i < n; i++) {
int x;
int y;
scanf("%d%d", &x, &y);
}
// Write an answer using printf(). DON'T FORGET THE TRAILING \n
// To debug: fprintf(stderr, "Debug messages...\n");
printf("answer\n");
return 0;
}
|