#include <stdio.h>
int main (void) {
  printf ("%c %d %c %d\n", 65, 65, 'A', 'A');

}