#include<stdio.h>

void main()
{   int A;
    int B;
    int C;
    printf("Enter the value of A and B: ");
    scanf("%d%d",&A,&B);
    C=A+B;
    printf("\nC=%d",C );
}
