#include using namespace std; int main(int argc, char **argv) { int i = 0; //ループカウンタ int N = 0; //N個の数値 int atai = 0; //足し算される値 int kaitou = 0; //yukiの解答 int total = 0; //足し算される値の合計 scanf("%d",&N); //入力 for(i = 0;i < N;i++) //N回ループ { scanf("%d",&atai); //足し算される値を入力 total += atai; //足し算される値の合計 } scanf("%d",&kaitou); //yukiの解答の入力 printf("%d\n",total-kaitou); return 0; }