#include <stdio.h>

int main(void) {
	// your code goes here
	
	
	int a = rand() % 1000;
	
	printf("%d ",&a);
	
	
	
	return 0;
}
