#include <stdio.h>

int main() {
  char *c = "ahoj kamo";
  printf("%s\n", c);
  return 0;
}