8 lines
150 B
C++
8 lines
150 B
C++
|
|
import std;
|
||
|
|
import MyMath;
|
||
|
|
|
||
|
|
int main() {
|
||
|
|
std::println("Square(5) = {}", Square(5));
|
||
|
|
std::println("Cube(3) = {}", Cube(3));
|
||
|
|
return 0;
|
||
|
|
}
|