#include #include using namespace std; int main() { string x, y; cin >> x; x.insert(3, "*"); cout << x; return 0; }