int main() {
int total=55,a=0; for(int i=1;i<=9;i++){ scanf("%d",&a); total -= a; } printf("The missing integer is:%d",total);
}