#include<stdio.h>
#include<string.h>
int main()
{
    char s1[1000], s2[1000], arr[1000];
    scanf("%s %s", s1, s2);
    if(strlen(s1) >strlen(s2))
    {
        char tmp[1000];
        strcpy(tmp, s1);
        strcpy(s1, s2);
        strcpy(s2, tmp);
    }
    int max = 0;
    for(int i=0; i<strlen(s1); i++)
    {
        for(int j=0; j<strlen(s2); j++)
        {
            int n = 0;
            while(s1[i+n] == s2[j+n] && s1[i+n] != '\0')
            {
                n++;
            }
            if(n > max)
            {
                max = n;
                strcpy(arr, s1+i);
                arr[max] = '\0';     
            }
        }
    }
    printf("%s\n", arr);
    return 0;
}