#include <iostream>
#include <string>

std::string make_farewell(const std::string& name)
{
    // TODO: return "Goodbye, <name>!".
    return name;
}

int main()
{
    std::cout << make_farewell("Ada") << '\n';
}
