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: 1756kB
Author: 2018212212152
In contest: 1277

#include<iostream>
#include<cmath>
using namespace std;
int main (){
	int a,b;
	int c;
	cin>>a>>b;
	c=a;
	if(c>0){
		b=b*-1;
	}
	else b*=2;
	if(abs(b)%2!=0){
		if(a*b<0)
			a=a*-1;
	}
	else {
			if(a*b>0){
				a=-1*a;

			}
	}

	cout<<a-b<<endl;
}