#include <iostream>
#include <vector>

int main ()
{
	std::vector<int> tab;
	int x = 0;
	while(std::cin >> x) {
		tab.push_back(x);
	}

	for(auto e : tab) {
		std::cout << e << ", ";
	}

	return 0;
}
