#include <iostream>
using namespace std;

int main() {
	int dd = 1, mm = 9, yy = 1;
	printf("%02d - %02d - %04d", mm, dd, yy);
	return 0;
}