#include using namespace std; int main(){ int K,N,F,A; cin >> K >> N >> F; K=K*N; for(int i=0;i> A;K-=A; } cout << (K<0?-1:K) << endl; return 0; }