using System; namespace yukicoder { class Program { static void Main(string[] args) { string[] s = Console.ReadLine().Split(' '); int[] a = new int[4]; int count=0; for(int x = 0; x < 4; x++) { a[x] = int.Parse(s[x]); } for(int i = a[0]; i <=a[1]; i++) { for(int j = a[2]; j <= a[3]; j++) { if (i != j) { count++; } } } Console.WriteLine(count); } } }