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: 2018212212294
In contest: 1277

#include<stdio.h>
#include<stdlib.h>
int main(void){
	int a,b,c;
	scanf("%d%d",&a,&b);
	if(a>0)
	b=-b;
	else{
	b=2*b;}
    if(abs(b)%2!=0)
    	if(a/(b*1.0)<0)
    	a=(-1)*a;
    if(abs(b)%2==0)   
		if(a/(b*1.0)>0){
		a=-a;}
	    c=a-b;
	    printf("%d",c);
		return 0;
}