#include <iostream>
#include <string>
 
int main()
{
    std::string string = "Grosses Ae: \u00c4";
 
    std::cout << string;
 
    return 0;
}