about summary refs log tree commit diff
path: root/others/easy20160714/01.c
blob: 9f36e4661e1f5c97af01ae1bc03007f19414979b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#include <stdio.h>

int main()
{
	FILE *f = fopen("INP.TXT", "r");
	short x;

	fscanf(f, "%hd", &x);

	fclose(f);

	if (x > -2)
		x = -2;
	else
		do
			x--;
		while (x % 2);

	f = fopen("OUT.TXT", "w");

	fprintf(f, "%hd\n", x);

	fclose(f);

	return 0;
}