def solve(): A,B,C,D,E=map(int,input().split()) return max(A-B, A-B+C*(D-E)) #================================================== print(solve())