标签:

5 3 2 1
A new star rise Orz Dota God
#include<iostream>
#include<algorithm>
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
using namespace std;
int main()
{
long long int n,m;
while(scanf("%lld%lld",&n,&m)!=EOF)
{
if(n%(m+1) == 0)
{
printf("Orz Dota God\n");
}
else
{
printf("A new star rise\n");
}
}
return 0;
}
标签:
原文地址:http://blog.csdn.net/yeguxin/article/details/45315445