#include using namespace std; int main(){ string s; cin >> s; int n = s.length(); if(n <= 3){ cout << s << endl; return 0; } stack st; int cnt = 0; int pos = n - 1; while(pos >= 0){ st.push(s[pos--]); ++cnt; if(cnt % 3 == 0) st.push(','); } if(n % 3 == 0) st.pop(); while(!st.empty()){ cout << st.top(); st.pop(); } cout << endl; }