#include <stdio.h>
void main()
{
int x,y,sub;
printf("Enter Two Integers : ");
scanf("%d%d",&x,&y);
sum=x-y;
printf("\nSubtraction = %d",sub);
}