Start: Jul, 01, 2019 08:30:00
2019年度暑期短学期第四天
End: Jul, 01, 2019 11:30:00
Time elapsed:
Time remaining:

Problem_ID: G
Result: Accepted
Time: 3ms
Memory: 1120kB
Author: 2018212212134
In contest: 1277

#include <stdio.h>
#include <math.h>
#include <string.h>

int main(){
	int a,b;
	scanf("%d %d",&a,&b);
	if(a>0)
		b = 0-b;
	else
		b *= 2;
	if(abs(b)%2==0)
	{
		if(b>0)
			a =0 - abs(a);
		if(b<0)
			a=abs(a);
	}
	else
	{
		if(b<0)
			a=0 - abs(a);
		else
			a=abs(a);
	}
	printf("%d\n",a-b);
}