import sys input = sys.stdin.readline x1, y1, x2, y2, x3 = map(int, input().split()) s1 = x3 * y1 // 2 s2 = x3 * y2 // 2 if(s1 == s2): print("Yes") else: print("No")