Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <bits/stdc++.h>
- #define ll long long
- #define pb push_back
- using namespace std;
- bool isPrime(int n) {
- if (n < 2) {
- return false;
- }
- for (int i = 2; i * i <= n; ++i) {
- if (n % i == 0) {
- return false;
- }
- }
- return true;
- }
- int main() {
- int m, n;
- cin >> m >> n;
- int cnt = 0;
- for (int i = m; i <= n; ++i) {
- if (isPrime(i)) {
- cnt++;
- cout << i << " ";
- }
- }
- if (cnt == 0) {
- cout << "Absent";
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement