پاسخ : هر سوال برنامه نویسی دارید بپرسید(C++,C#,java)
اینو چرا کسی نتونست حل کنه؟
اینم کد:#include <cstdio>
#include <iostream>
#include <algorithm>
using namespace std;
long long a,b,m;
bool isprime(int x)
{
for(int i=2;i<x;i++)
if(x%i==0)
return false;
return...