#include int main(){ //input,total of B int total = 0; for (int i = 0;i < 9;i++){ int B; scanf("%d",&B); total += B; } //output printf("%d\n",55-total); return 0; }