You are on page 1of 1

#include <cstdio>

int main(){
int x,y,hash;
scanf("%d",&x);
scanf("%d",&y);
hash = y - x;
if(x>4294967296 && y>4294967296){
printf("EOF");
}
else{
printf("%d\n",hash);
}
}

You might also like