1842 立方体表面积
Submit solution
Points:
100
Time limit:
1.0s
Memory limit:
32M
Problem types
Allowed languages
C, C++, Java, Python
Description
已知立方体的长宽高,求其表面积。
Input
一些长、宽、高整数数据X,Y,Z(1<X,Y,Z<1000)。
Output
以一行的形式输出立方体的表面积。
Sample
Input
2 3 6
5 5 8
Output
72
210
Source: qn
Comments