Untitled
unknown
plain_text
3 years ago
233 B
4
Indexable
#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"; } }
Editor is loading...