include int main () { int A , B , C; printf("Enter two integer number:"); scanf("%d %d", &A &B); C = A + B; printf("%d", C); return o; }