#include #include #include // Math.h For sqrt function using namespace std; int main() { // Variable Declaration int n; // Get Input Value cout<<"Enter the Number :"; cin>>n; cout<<"List Of Prime Numbers Below "< sqrt(i)) { cout << i << endl; } } // Wait For Output Screen getch(); return 0; }