C
c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <stdio.h>
int main() {
int m, K, g ;
scanf("%*d", &m);
scanf("%*d", &K);
scanf("%*d", &g);
printf("Entered the value of m = %d\n", m);
printf("Entered the value of K = %d\n", K);
printf("Entered the value of g = %d\n", g);
int L = m*g/K;
printf(“m*g/K = %d\n” , L);
return 0;
}
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run