Untitled
unknown
plain_text
2 years ago
233 B
2
Indexable
Never
#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"; } }