fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. char C,C1;
  6. scanf(" %c",&C);
  7. scanf(" %c",&C1);
  8. printf("C=%c\n",C);
  9. printf("C1=%c\n",C1);
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0s 5316KB
stdin
G J
stdout
C=G
C1=J