#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include //#include const double EPS = (1e-10); using namespace std; using Int = long long; //using namespace boost::multiprecision; const Int MOD = 1000000007; Int mod_pow(Int x, Int n) { Int res = 1; while(n > 0) { if(n & 1) res = (res * x) % MOD; //ビット演算(最下位ビットが1のとき) x = (x * x) % MOD; n >>= 1; //右シフト(n = n >> 1) } return res; } template T gcd(T a, T b) { return b != 0 ? gcd(b, a % b) : a; } template T lcm(T a, T b) { return a * b / gcd(a, b); } int main(){ string N; cin >> N; string ans; for (int i = N.length()-1; i >= 0 ; i--){ ans.push_back(N[i]); if (i != 0 && (N.length()-i)%3 == 0) ans.push_back(','); } reverse(ans.begin(), ans.end()); cout << ans << endl; }