Main.cpp: In function 'int main()':
Main.cpp:6:5: error: 'cin' was not declared in this scope
6 | cin>>n;
| ^~~
Main.cpp:1:1: note: 'std::cin' is defined in header '<iostream>'; did you forget to '#include <iostream>'?
+++ |+#include <iostream>
1 | using namespace std;
Main.cpp:35:5: error: 'cout' was not declared in this scope
35 | cout<<p<<" "<<b<<endl;
| ^~~~
Main.cpp:35:5: note: 'std::cout' is defined in header '<iostream>'; did you forget to '#include <iostream>'?
Main.cpp:35:22: error: 'endl' was not declared in this scope
35 | cout<<p<<" "<<b<<endl;
| ^~~~
Main.cpp:1:1: note: 'std::endl' is defined in header '<ostream>'; did you forget to '#include <ostream>'?
+++ |+#include <ostream>
1 | using namespace std;