21 lines
No EOL
315 B
C++
21 lines
No EOL
315 B
C++
#include <iostream>
|
|
#include <regex>
|
|
#include <fstream>
|
|
#include <string>
|
|
#include <list>
|
|
|
|
using namespace std;
|
|
|
|
int main(int argc, char const *argv[])
|
|
{
|
|
|
|
ifstream puzzle("puzzleInput", ifstream::in);
|
|
|
|
string line;
|
|
while (getline(puzzle, line))
|
|
{
|
|
cout << line << endl;
|
|
}
|
|
|
|
return 0;
|
|
} |