#include<stdio.h> #include<conio.h> void main(){ int a,b,d; scanf("%d%d",&a,&b); d=a+~b+1; printf("%d",d); getch(); }
Comments 0