#include<bits/stdc++.h>
using namespace std;
bool sushu(int n){
bool r;
for(int i=2;i<=sqrt(n);i++){
if (n%i=0){
r=false;
}
}
if(n<=1){
r=false;
}
return r;
}
/**************************************************************
Problem: 1139
User: luyanchen
Language: C++
Result: Compile Error
****************************************************************/