#include <stdio.h>

int main(void){
  char c1,c2,c3,c4,c5,c6;
  printf("Enter two characters (without spaces), then press return:\n");
  scanf("%c%c",&c1,&c2);
  printf("\nFirst Character %c Second Character %c \n",c1,c2);

  printf("Enter two MORE characters (without spaces), then press return:\n");
  scanf("%c%c",&c3,&c4);
  printf("\nThird Character %c Fourth Character %c \n",c3,c4);

  return 0;
}

