#include<stdio.h>
main()
{
    int a,b,add,sub,mult;
    float div;
    
    printf("Enter the value of a : ");
    scanf("%d",&a);
    printf("Enter the value of b : ");
    scanf("%d",&b);
    add= a+b;
    sub= a-b;
    mult= a*b;
    div= a/b;
    printf("add=%d /n sub=%d /n mult=%d /n div=%f",add,sub,mult,div);
}
