import java.util.Scanner; public class No143 { public static void main(String args[]) { Scanner sc = new Scanner(System.in); int mame = sc.nextInt() * sc.nextInt(); int f = sc.nextInt(); // 人数 for( int i = 0; i < f; i++ ){ mame -= sc.nextInt(); } // 0以上なら残りのmameの数を表示、それ以外は-1を表示 System.out.println( (mame >= 0) ? mame : -1 ); } }