#include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; typedef long long ll; const int inf=1<<30; const ll INF=1LL<<62; typedef pair P; typedef pair PP; const ll MOD=998244353; int main(){ int k; cin>>k; vector p(k),e(k); for(int i=0;i>p[i]>>e[i]; } ll cp=p.back(); vector mpf(cp+1); for(int i=2;i<=cp;i++){ if(mpf[i]==0){ for(int j=i;j<=cp;j+=i){ mpf[j]=i;//jはiで割れる } } } ll dif=k; for(ll r=1;r<=cp/2;r++){ for(ll tmp=cp-r+1;tmp!=1;tmp/=mpf[tmp]){ // cp C tmp を試す. tmp=cp-r+1,cp-r+2,...,cp //tmpを素因数分解する if(e[mpf[tmp]]==0){ dif++; } e[mpf[tmp]]--; if(e[mpf[tmp]]!=0){ dif--; } } for(ll tmp=r;tmp!=1;tmp/=mpf[tmp]){ //cp C tmpを試す. tmp=1,2,3,...,r if(e[mpf[tmp]]==0){ dif++; } e[mpf[tmp]]++; if(e[mpf[tmp]]!=0){ dif--; } if(dif==0){ cout<