/*
TASK:rprimes
LANG:c++
*/
#include<iostream.h>
long const LIM=200000000;
int main(){
	long a,b;
	cin>>a>>b;

	return 0;	
}