Solution :-
#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
int a,b,sum,sub,mul,div,mod;
printf(“Enter the First number :-“);
scanf(“%d”,&a);
printf(“Enter the Second number :- “);
scanf(“%d”,&b);
sum = a+b;
sub = a-b;
mul = a*b;
div = a/b;
mod = a%b;
printf(“\nThe Sum of two number is :- %d”,sum);
printf(“\nThe Sub of two number is :- %d”,sub);
printf(“\nThe Mul of two number is :- %d”,mul);
printf(“\nThe Div of two number is :- %d”,div);
printf(“\nThe Mod of two number is :- %d”,mod);
getch();
}