Skip to content

Instantly share code, notes, and snippets.

@ateruimashin
Created August 15, 2018 08:22
Show Gist options
  • Save ateruimashin/bcef00bdd06ede12bdb24373041d2eb2 to your computer and use it in GitHub Desktop.
Save ateruimashin/bcef00bdd06ede12bdb24373041d2eb2 to your computer and use it in GitHub Desktop.
#include <iostream>
using namespace std;
int main(int argc, char const *argv[]) {
int n;
cin>>n;
int sum=0;
for(int i=0;i<n;i++){
int tmp;
cin>>tmp;
sum+=tmp-1;
}
cout<<sum<<endl;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment