当前位置:网站首页>L1-066 cat is liquid (5 points)

L1-066 cat is liquid (5 points)

2022-06-12 04:28:00 Liabilities between persons^

L1-066 Cats are liquids (5 branch )

 Insert picture description here
It's difficult to measure a person's volume , But cats are different . Because cats are liquids , So you can easily measure the volume of a cuboid container to get the volume of the cat in the container . Please complete this calculation .

Input format :
The input is given in the first line 3 No more than one. 100 The positive integer , Respectively corresponding to the length of the container 、 wide 、 high .

Output format :
Output the volume of the cat in one line .

sample input :

23 15 20

sample output :

6900
#include<iostream>
#include<algorithm>
#include<cstring>
#include<cmath>
#include<vector>
#include<stack>
#include<queue>
#include<sstream>

using namespace std;
typedef long long ll;
const int N=10010;

int main()
{
    
	int a, b, c;
	cin >> a >> b >> c;
	cout << a * b * c << endl;
	return 0;
}



原网站

版权声明
本文为[Liabilities between persons^]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/03/202203010950285895.html