Untitled
unknown
plain_text
3 years ago
230 B
6
Indexable
#include <iostream>
#include <string>
#include <math.h>
#include <fstream>
using namespace std;
int main()
{
int a, b, c;
ifstream jija("input.txt");
jija >> a >> b >> c;
cout << ((a * b) * c) / 3.0;
}Editor is loading...