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: 4ms
Memory: 1120kB
Author: 2018212212077
In contest: 1277

#include<stdio.h>
#include<math.h>
int main(){
	int a,b,t;
	scanf("%d %d",&a,&b);
	if(a>0)
	b=-b;
	else
	b=b*2;
	if(abs(b)%2==1&&a*b<0){
		a=-a;
	}
	else if(abs(b)%2==0&&a*b>0){
		a=-a;
	}
	t=a-b;
	printf("%d",t);
	
}