您的位置:首页 > 其它

CodeForces 630R:Game【水】

2016-03-09 18:00 323 查看
Game

Time Limit:500MS     Memory
Limit:65536KB     64bit
IO Format:%I64d & %I64u

Submit Status

Description

There is a legend in the IT City college. A student that failed to answer all questions on the game theory exam is given one more chance by his professor. The student has to play a game with the professor.

The game is played on a square field consisting of n × n cells. Initially all cells are empty. On each turn a player chooses and paint an empty cell that has no common sides with previously
painted cells. Adjacent corner of painted cells is allowed. On the next turn another player does the same, then the first one and so on. The player with no cells to paint on his turn loses.

The professor have chosen the field size n and allowed the student to choose to be the first or the second player in the game. What should the student choose to win the game? Both players play
optimally.

Input

The only line of the input contains one integer n (1 ≤ n ≤ 1018) — the size of the field.

Output

Output number 1, if the player making the first turn wins when both players play optimally, otherwise print number 2.

Sample Input

Input
1


Output
1


Input
2


Output
2

AC-code:
#include<cstdio>
#include<cmath>
int main()
{
long long n;
int flag;
scanf("%lld",&n);
if(n%2==0)
flag=2;
else flag=1;
printf("%d\n",flag);
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: