#include int main(void) { int a, b; scanf("%d %d", &a, &b); a = a * (-1); printf("%d\n", (-1) * (a - b)); return 0; }