#include int main() { char str1[100], str2[100]; scanf("%[^\n]%*c", str1); scanf("%[^\n]%*c", str2); int i = 0, j = 0; while (str1[i] != '\0') { i++; } while (str2[j] != '\0') { str1[i] = str2[j]; i++; j++; } str1[i] = '\0'; printf("%s\n", str1); return 0; }