This commit is contained in:
암냥 2026-04-08 16:02:20 +09:00
commit d42448a9d0
No known key found for this signature in database
13 changed files with 187 additions and 0 deletions

14
layer7/cool.c Normal file
View file

@ -0,0 +1,14 @@
#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));
}
}