#include<stdio.h> main() { int a,b,c; printf("enter value for a,b, c"); scanf("%d%d%d",&a,&b,&c); a += b*c+a; printf("\n a = %d",a); }