#include <stdio.h>

int main (void)
{
  char c;
  for (c = '0'; c <= 'Z'; c++)
    {
      printf ("%c", c);
    }
  printf ("\n");
  return 0;
}
