You are on page 1of 1

#include <iostream>

#include <fstream>

using namespace std; ifstream f("nr.in"); int main() {int n, x; f>>n; for(int i=1; i<=n; i++) {f>>x; cout<<x<<"
";} cout << "yee." << endl; return 0; }

You might also like