#include<stdio.h>
#include<string.h>
int main()
{
double x1,y1,x2,y2,x,y;
scanf("%lf %lf %lf %lf",&x1,&y1,&x2,&y2);
x=x1+x2;
y=y1+y2;
if(x>-0.05&&x<0.05){ 当x或y为-0.04~0时,保留一位小数输出的是-0.0
x=0;
}
if(y>-0.05&&y<0.05){
y=0;
}
printf("(%.1f, %.1f)",x,y);
return 0;
}
12-31
940