const fs = require('fs');
const [x, y, w, h] = fs.readFileSync('dev/stdin').toString().split(' ').map(Number);
const calc = [x, y, w - x, h - y];
const min = Math.min(...calc);
console.log(min);
const fs = require('fs');
const [x, y, w, h] = fs.readFileSync('dev/stdin').toString().split(' ').map(Number);
const calc = [x, y, w - x, h - y];
const min = Math.min(...calc);
console.log(min);