14 lines
239 B
C
14 lines
239 B
C
#include <stdio.h>
|
|
#include <string.h>
|
|
int main() {
|
|
char a[100], b[100];
|
|
scanf("%s", &a);
|
|
|
|
scanf("%s", &b);
|
|
if(strcmp(a,b) == 0) {
|
|
printf("같습니다");
|
|
}
|
|
else {
|
|
printf("%s", strcat(a,b));
|
|
}
|
|
}
|