1514Circle Game

1514   Circle Game

题目描述

forever97 and pikapikachu>.< play the following game: they take turns to draw the circle with radius r on the rectangular table with length n and width m, the circles don't cover each other, and any circle is located within the table's border. The player who cannot draw the circle loses. Now we know forever97 draw first, determine which player wins.

输入格式:

The first line is an integer, T, representing the T cases.

For each case, the first line contains three positive integers n, m, r (1<=n, m, r<=10,000).

输出格式:

Output one line per case, either "forever97."(without the quotes) if forever97 wins or "pikapikachu>.<" (without the quotes), if pikapikachu>.< wins.

输入样例 复制
2
2 2 1
1 1 1
输出样例 复制
forever97.
pikapikachu>.<

说明

15
53
通过提交
时空限制1000ms/128mb
题目来源
评测方式在线评测
题目类型
难        度