Your IP : 216.73.216.40


Current Path : /var/www/html/venkat/old/
Upload File :
Current File : /var/www/html/venkat/old/iit2015125_5.c

#include<stdio.h>
int main()
{
	char str1[30],str2[30];
	int i,j;
	gets(str1);
	gets(str2);
	for(i=0;str1[i]!='\0';i++)
	{
		for(j=0;str2[j]!='\0';j++)
		{
			if(str1[i]==str2[j])
				printf("%c",str1[i]);
		}	
	}

}