#include <iostream>
#include <string>
using namespace std;

int main() {
	
	string received;
	while(getline(cin, received, ','))
	{
		cout << received << endl;
	}
	// your code goes here
	return 0;
}