#include<stdio.h>
int main()
int a, b;
{
 if(scanf("%d",&a)!=1||scanf("%d",&b)!=1)
 printf("a=%d,b=%d\n",a,b);
 return 0;
}