#define _USE_MATH_DEFINES #include using namespace std; signed main() { ios::sync_with_stdio(false); cin.tie(0); string s; cin >> s; string t; reverse(s.begin(), s.end()); for (int i = 0; i < (int) s.length(); i++) { if (i > 0 && i % 3 == 0) t += ','; t += s[i]; } cout << string(t.rbegin(), t.rend()) << endl; return 0; }