#include #define rep(i,n) for(int i=0; i<(n); i++) using namespace std; typedef long long ll; int main(){ int n; cin>>n; string s; while(n!=0){ int a=n%1000; n/=1000; if(n!=0) s=","+to_string(a)+s; else s=to_string(a)+s; } cout << s << endl; }