// #include <stdio.h>
// #include <ctype.h>
// int isValid(char str[]) {
//     int i = 0;
//     while (str[i]) {   //goes through each character until the null chaacter/0
//         if (!isalpha(str[i])) {  //checks if the character is not a letter and return 0
//             return 0; 
//         }
//         i++;
//     }
//     return 1; // if valid and return 1
// }
// int main() {
//     char s1[101], s2[101];
//     scanf("%s", s1);
//     scanf("%s", s2);
//     if (isValid(s1) && isValid(s2)) {
//         printf("%s%s\n", s1, s2);
//     } else {
//         printf("Invalid input\n");
//     }
//     return 0;
// }

#include<stdio.h>
#include<ctype.h>
int main(){
    // char a;
    // scanf("%c",&a);
    // if(isdigit(a)){
    //     printf("Invalid input");
    // }
    // else{
    // printf("CodingChallenge");
    // }
    char s1[100];
    char s2[100];
    scanf("%c",&s1,&s2);
    strcat(s1,s2);
}