#include <iostream>
using namespace std;

int main() {
	//int code goes here
	int a,b;
	scanf("%d,%d",&a,&b);
	printf("a=%d,b=%d\n",a,b);
	return 0;
}