mirror of
https://github.com/Kiritow/OJ-Problems-Source.git
synced 2024-03-22 13:11:29 +08:00
46f6aa3fc4
2200-2299
13 lines
238 B
C++
13 lines
238 B
C++
#include<stdio.h>
|
|
#include<string.h>
|
|
int main()
|
|
{
|
|
char s1[200001],s2[110000];
|
|
while(~scanf("%s %s",s1,s2))
|
|
{
|
|
sprintf(s1,"%s%s",s1,s1);
|
|
if(strstr(s1,s2))puts("yes");
|
|
else puts("no");
|
|
}
|
|
}
|