#include <iostream>
#include <iomanip>
using namespace std;

int main() {
	cout << setfill('0') << setw(2) << 5;
	return 0;
}