8 lines
79 B
C++
8 lines
79 B
C++
#include "JSON.h"
|
|
|
|
int main()
|
|
{
|
|
JSON j;
|
|
j << std::cin;
|
|
return 0;
|
|
}
|