#include <iostream>
using namespace std;

int main()
{
    int N1, N2;
    cout << "This program will find prime numbers between two of your specified number!" << endl << "please enter the first number: ";
    cin >> N1;
    cout << "please enter the second number: ";
    cin >> N2;

    int x = N1;
    while (x < N2)
    {
        cout << x;
        x += 1;
    }

}