Advertisement
Guest User

Untitled

a guest
Feb 14th, 2020
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.22 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5.     char f, g;
  6.     char buff [100];
  7.     scanf(" %c", &f);
  8.     scanf("%[^\n]", buff);
  9.     scanf(" %c", &g);
  10.     scanf("%[^\n]", buff);
  11.     printf("%c %c", f, g);
  12.  
  13.     return 0;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement