summaryrefslogtreecommitdiff
path: root/c,cc/file_index.cc
blob: c6ec33447b1c63c20a72ec9bc2722aeb1934fdcd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
 * template.cpp
 *
 * Patrick Simianer <p@simianer.de>
 * YYYY-MM-DD
 */

#include <iostream>
#include <string>
#include <vector>
#include <sstream>

using namespace std;


int main(int argc, char const* argv[])
{
  string line;
  while (getline(cin, line)) {
    istringstream ss(line);
    size_t e;
    while (ss >> e) {
      cout << e << endl;
    }
  }

  return 0;
}