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

int main() {
	int x = 1;
	cout << setfill('0') << setw(4) << x << endl;
	return 0;
}