Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

import java.util.

*;
public class Main
{
public static void main(String[] args) {

Scanner sc = new Scanner(System.in);

String s1 = sc.nextLine();
String s2 = sc.nextLine();

for(int i=0;i<s1.length();i++)
{
if(s1.charAt(i)==s2.charAt(0))
{
int count=0;
for(int j=0;j<s2.length();j++)
{

if(s2.charAt(j)==s1.charAt(i))
{
count++;
i++;
}
}
if(count == s2.length())
{
System.out.print("yes");
break;
}
else{
System.out.print("no");
break;
}
}
}
}
}

You might also like