Untitled
#include <iostream> using namespace std; int main() { int a,b=0, i = 1; cin >> a; while (i < a) { if (a % i == 0) { b++; } i++; } if (b > 1) { cout << "Ne prostoe"; } else { cout << "Prostoe"; } }
#include <iostream> using namespace std; int main() { int a,b=0, i = 1; cin >> a; while (i < a) { if (a % i == 0) { b++; } i++; } if (b > 1) { cout << "Ne prostoe"; } else { cout << "Prostoe"; } }