#include <stdio.h>
#define UNISCI(A, B) A ## B
int main (void)
{
  printf ("%i\n", UNISCI(1234, 5678));
  return 0;
}
