10 lines
169 B
C++
10 lines
169 B
C++
|
#include <cstdio>
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
float a, b, c;
|
||
|
scanf("%f%f%f", &a, &b, &c);
|
||
|
printf("MEDIA = %.1f\n", (a * 2 + b * 3 + c * 5) / (2 + 3 + 5));
|
||
|
return 0;
|
||
|
}
|