#include #define ll long long int using namespace std; ll isPrime[10^7]; void fun(ll n){ for(ll i=2;i<=n;i++) isPrime[i]=0;