mirror of
https://github.com/Kiritow/OJ-Problems-Source.git
synced 2024-03-22 13:11:29 +08:00
7a2a9109f5
2600-2699
17 lines
379 B
C++
17 lines
379 B
C++
#include<stdio.h>
|
|
int main()
|
|
{
|
|
int t;
|
|
double n,m;
|
|
scanf("%d",&t);
|
|
while(t--)
|
|
{
|
|
scanf("%lf%lf",&n,&m);
|
|
if(n*52>=m)
|
|
printf("Oh,Samuel's hope will come true,thanks to the DcSLs.\n");
|
|
else
|
|
printf("Unfortunately,Samuel's hope will not come true,more tourists are welcomed!\n");
|
|
}
|
|
return 0;
|
|
}
|