#include <iostream>
#include <iomanip>

int main()
{
	for(auto month : {"March", "April", "May"})
	{
		double v;
		std::cin >> v; //because I'm lazy
		std::cout
			<< std::setw(6) << std::left
			<< month
			<< std::setw(25) << std::right << std::fixed << std::showpoint << std::setprecision(2)
			<< v
			<< std::endl;
	}
}
