Josif_tepe

Untitled

Aug 22nd, 2025
386
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.27 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <ctype.h>
  4. #include <string.h>
  5.  
  6. int main(void) {
  7.    
  8.     char a[2000];
  9.    
  10.     scanf("%s", a);
  11.    
  12.     char b[2000];
  13.     scanf("%s", b);
  14.    
  15.     strcat(a, b);
  16.     printf("%s\n", a);
  17.    
  18.    
  19.  
  20.     return 0;
  21. }
  22.  
Advertisement
Add Comment
Please, Sign In to add comment