using System; using System.Collections.Generic; using System.Linq; using System.IO; using System.IO.Compression; using System.Text; //using System.Numerics; namespace Solver { class Program { const int M = 1000000007; const double eps = 1e-9; static int[] dd = { 0, 1, 0, -1, 0 }; static void Main() { var sw = new System.IO.StreamWriter(Console.OpenStandardOutput()) { AutoFlush = false }; var sc = new Scan(); var inp = sc.IntArr; long x1 = inp[0], y1 = inp[1], x2 = inp[2], y2 = inp[3], d = inp[4]; if (x1 <= 0 && x2 <= 0) { var t = x1; x1 = -x2; x2 = -t; } if (y1 <= 0 && y2 <= 0) { var t = y1; y1 = -y2; y2 = -t; } if (x1 >= 0 && y1 >= 0) sw.WriteLine(count(x1, y1, x2, y2, d)); else if (x1 >= 0) sw.WriteLine(count(x1, 0, x2, y2, d) + count(x1, 1, x2, -y1, d)); else if (y1 >= 0) sw.WriteLine(count(0, y1, x2, y2, d) + count(1, y1, -x1, y2, d)); else sw.WriteLine(count(0, 0, x2, y2, d) + count(1, 0, -x1, y2, d) + count(0, 1, x2, -y1, d) + count(1, 1, -x1, -y1, d)); sw.Flush(); } static long count(long x1, long y1, long x2, long y2, long d) { return count(x2, y2, d) - count(x2, y1 - 1, d) - count(x1 - 1, y2, d) + count(x1 - 1, y1 - 1, d); } static long count(long x, long y, long d) { if (x < 0 || y < 0) return 0; if (x + y <= d) return (x + 1) * (y + 1); if (x < d && y < d) { long c = x + y - d; return (x + 1) * (y + 1) - c * (c + 1) / 2; } if (x < d) return (d * 2 + 2 - x) * (x + 1) / 2; if (y < d) return (d * 2 + 2 - y) * (y + 1) / 2; return (d + 1) * (d + 2) / 2; } static bool isprime(long n) { if (n == 1) return false; for (long i = 2; i * i <= n; i++) if (n % i == 0) return false; return true; } static string strsort(string s) { var c = s.ToCharArray(); Array.Sort(c); return string.Join("", c); } static string strswap(string s, int i, int j) { var c = s.ToCharArray(); c[i] = s[j]; c[j] = s[i]; return string.Join("", c); } static T[] copy(T[] a) { var ret = new T[a.Length]; for (int i = 0; i < a.Length; i++) ret[i] = a[i]; return ret; } } class Scan { public int Int { get { return int.Parse(Console.ReadLine().Trim()); } } public long Long { get { return long.Parse(Console.ReadLine().Trim()); } } public string Str { get { return Console.ReadLine().Trim(); } } public int[] IntArr { get { return Console.ReadLine().Trim().Split().Select(int.Parse).ToArray(); } } public int[] IntArrWithSep(char sep) { return Console.ReadLine().Trim().Split(sep).Select(int.Parse).ToArray(); } public long[] LongArr { get { return Console.ReadLine().Trim().Split().Select(long.Parse).ToArray(); } } public double[] DoubleArr { get { return Console.ReadLine().Split().Select(double.Parse).ToArray(); } } public string[] StrArr { get { return Console.ReadLine().Trim().Split(); } } public List IntList { get { return Console.ReadLine().Trim().Split().Select(int.Parse).ToList(); } } public List LongList { get { return Console.ReadLine().Trim().Split().Select(long.Parse).ToList(); } } public void Multi(out int a, out int b) { var arr = IntArr; a = arr[0]; b = arr[1]; } public void Multi(out int a, out int b, out int c) { var arr = IntArr; a = arr[0]; b = arr[1]; c = arr[2]; } public void Multi(out int a, out int b, out int c, out int d) { var arr = IntArr; a = arr[0]; b = arr[1]; c = arr[2]; d = arr[3]; } public void Multi(out int a, out string b) { var arr = StrArr; a = int.Parse(arr[0]); b = arr[1]; } public void Multi(out int a, out int b, out string c) { var arr = StrArr; a = int.Parse(arr[0]); b = int.Parse(arr[1]); c = arr[2]; } public void Multi(out int a, out char b) { var arr = StrArr; a = int.Parse(arr[0]); b = arr[1][0]; } public void Multi(out char a, out int b) { var arr = StrArr; a = arr[0][0]; b = int.Parse(arr[1]); } public void Multi(out long a, out long b) { var arr = LongArr; a = arr[0]; b = arr[1]; } public void Multi(out long a, out int b) { var arr = LongArr; a = arr[0]; b = (int)arr[1]; } public void Multi(out int a, out long b) { var arr = LongArr; a = (int)arr[0]; b = arr[1]; } public void Multi(out string a, out string b) { var arr = StrArr; a = arr[0]; b = arr[1]; } } class mymath { public bool isprime(long a) { if (a < 2) return false; for (long i = 2; i * i <= a; i++) if (a % i == 0) return false; return true; } public long powmod(long a, long b, long M) { if (a == 0) return 0; if (b == 0) return 1; if (b == 1) return a % M; var t = powmod(a, b / 2, M); if ((b & 1) == 0) return t * t % M; else return t * t % M * a % M; } public long gcd(long a, long b) { while (b != 0) { var t = a % b; a = b; b = t; } return a; } public long lcm(int a, int b) { return a * (long)b / gcd(a, b); } } }