#include<bits/stdc++.h> using namespace std; int n,x,ans,p; int main(){ cin>>x>>n; while(n--){ cin>>p; ans+=x-p; } cout<<ans+x; return 0; }