#include using namespace std; #define ll long long int main () { ios_base::sync_with_stdio(false); // freopen("C:\\in.txt","r", stdin); char ch; while (EOF != (ch = getchar())) { if(ch == '.' || ch == '-'){ } else if(ch == ','){ cout << ' '; cout << ch; } else { cout << ch; } } return 0; }