#include
int main(void)
{
float x,y;
scanf("%f", &x);
if(x>100)
y = x+10;
else if(x<-10)
y=-x+10;
else
y=0;
printf("x = %f, y = %f\n", x, y);
return 0;
}
#include "stdio.h"
int main(void)
{
int x;
scanf("%d", &x);
if (x > 100)
printf("%d", x + 10);
else if (x < -10)
printf("%d", -x + 10);
else
printf("0");
return 0;
}