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

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