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