#include <stdio.h>

int main()
{
    char foo[] = "Hä";
    const char *bar="Hö";
    puts("Hü");
    printf("%s\n%s\n", foo, bar);
    return 0;
}