#include using namespace std; typedef long long int ll; typedef unsigned long long ull; mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count()); ll myRand(ll B) { return (ull)rng() % B; } int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); int n; cin >> n; int sum=0; vector a(n-1); for(int i=0;i> a[i]; sum+=a[i]; } int res=0; for(int i=0;i<=100;i++){ if((sum+i)%n==0)res++; } printf("%d\n",res); }