#include <stdio.h>

main(int argc)
{
  int c;

  setbuf(stdout, NULL);

  if (argc == 1)
  {
    while ((c = getchar()) != EOF)
    {
      putchar(c);
    }
  }
  else
  {
    printf("Hallo SSL\n");
  }

  return 0;
}
