n = gets.chomp.reverse ans = "" n.size.times do |i| ans += n[i] if i + 1 == n.size break end if i % 3 == 2 ans += ?, end end puts ans.reverse