0_0_37975977_7369.cpp: In function 'void IO::input(T& ...)':
0_0_37975977_7369.cpp:4:70: error: expected primary-expression before '...' token
template <typename ...T> void input(T&... t) { ((std::cin >> t), ...); }
^
0_0_37975977_7369.cpp:4:70: error: expected ')' before '...' token
0_0_37975977_7369.cpp:4:74: error: parameter packs not expanded with '...':
template <typename ...T> void input(T&... t) { ((std::cin >> t), ...); }
^
0_0_37975977_7369.cpp:4:74: note: 't'
0_0_37975977_7369.cpp: In function 'void IO::print(const U&, const T& ...)':
0_0_37975977_7369.cpp:8:122: error: expected primary-expression before '...' token
template <typename U,typename ...T> void print(const U& u,const T&... t) { std::cout << u , ((std::cout << SEP << t),... ) << END; }
^
0_0_37975977_7369.cpp:8:122: error: expected ')' before '...' token
0_0_37975977_7369.cpp:8:134: error: parameter packs not expanded with '...':
template <typename U,typename ...T> void print(const U& u,const T&... t) { std::cout << u , ((std::cout << SEP << t),... ) << END; }
^
0_0_37975977_7369.cpp:8:134: note: 't'
|