#include<stdio.h>
#include<conio.h>
void main()
{
int p,n;
float x,r;
clrscr();
printf("Enterthe value of P:- ");
scanf("%d",&p);
printf("Enterthe value of N:- ");
scanf("%d",&n);
printf("Enterthe value of R:- ");
scanf("%f",&r);
x = p * r * n / 100;
printf("The Interest Value Us :- %8.2f ",x);
getch();
}