// program to calculate the simple interest
#include<stdio.h>
void main()
{
int p,n,r,si;
printf("enter value of p,n,r");
scanf("%d%d%d",&p,&n,&r);
si=p*n*r/100; // arithmetic expression i.e. combination of operators and operands
printf("simple interest is =%d",si);
}