#include <iostream>
#include <algorithm>

int main() {
	const std::string& s = std::max<std::string>("a", "b");
	std::cout << s << '\n';
}