#include <stdio.h>
#define SUM(a, b) a + b
int main()
{
int x, y;
scanf("%d,%d", &x, &y);
printf("%d+%d=%d\n", x, y, SUM(x, y));
return 0;
}