Create 1846.cpp

pull/45/head
Kirigaya Kazuto 2016-09-25 23:04:53 +08:00 committed by GitHub
parent e7cc423eaa
commit 50ccef8488
1 changed files with 23 additions and 0 deletions

23
HDOJ/1846.cpp Normal file
View File

@ -0,0 +1,23 @@
#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;
}