TU-Programmieren_2/lab1/task.cpp
2025-04-09 10:22:44 +02:00

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;
}