#include<stdio.h>

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