14 lines
173 B
C++
14 lines
173 B
C++
//
|
|
// Created by e12302343 on 3/20/24.
|
|
//
|
|
|
|
#include <iostream>
|
|
|
|
|
|
int mul(int a, int b, int c) {
|
|
return a*b*c;
|
|
}
|
|
|
|
int main() {
|
|
std::cout << mul(1,2,3) << std::endl;
|
|
} |