#include <iostream>
using namespace std;

int AC, RP, WA = 999, RE = 999, TLE = 999, MLE = 999;

void wish(){
	AC++;
	RP++;
	WA--;
	RE--;
	TLE--;
	MLE--;
}

int main(){
	while(1){
		wish();
	}
	return 0;
}