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

int main() {
	cout << setw(5) << setfill('0') << internal << -42 << endl;
	
	return 0;
}