#include<stdio.h>
#include<string.h>
int main()
{
    char password[100];
    char repassword[100];
    scanf("%s %s",password,repassword);
    if(strcmp(password,repassword) == 0) //strcmp功能是比较两个字符串,
                                         //相同返回0不同返回1
        printf("same\n");
    else
        printf("different\n");
    return 0;
}