#include<stdio.h>
#include<stdlib.h>
int main()
{
int a, b, c, d, e;
printf("Welcome to the calculator!
");
printf("print the value of a here:- ");
scanf("%d", &a);
printf("
print the value of b here:- ");
scanf("%d", &b);
printf("
print the value of c here:- ");
scanf("%d", &c);
d = a*b*c;
e = a+b+c;
printf("a*b*c = %d
", d);
printf("a+b+c = %d", e);
return 0;
}