mirror of
https://github.com/Kiritow/OJ-Problems-Source.git
synced 2024-03-22 13:11:29 +08:00
24 lines
350 B
C++
24 lines
350 B
C++
#include <cstdio>
|
|
#include <cstdlib>
|
|
#include <cstring>
|
|
using namespace std;
|
|
int main()
|
|
{
|
|
int t;
|
|
scanf("%d",&t);
|
|
while(t--)
|
|
{
|
|
int n,m;
|
|
scanf("%d %d",&n,&m);
|
|
if(n%(m+1)==0)
|
|
{
|
|
printf("second\n");
|
|
}
|
|
else
|
|
{
|
|
printf("first\n");
|
|
}
|
|
}
|
|
return 0;
|
|
}
|