Cod sursa(job #1347554)
Utilizator | Data | 19 februarie 2015 00:34:33 | |
---|---|---|---|
Problema | Convertor | Scor | 0 |
Compilator | cpp | Status | done |
Runda | rosedu_cdl_2015 | Marime | 0.34 kb |
#include <iostream>
#include<json.h>
using namespace std;
using namespace jsoncons;
using namespace jsoncons_ext::csv;
int main(int argc, char** argv) {
json_deserializer handler;
csv_reader reader(cin, handler);
reader.read();
json result = move(handler.root());
cout << result << endl;
return 0;
}