diff --git a/src/main/duellist-spielesammlung-projekt.c b/src/main/duellist-spielesammlung-projekt.c index 8abc8aa..9270399 100644 --- a/src/main/duellist-spielesammlung-projekt.c +++ b/src/main/duellist-spielesammlung-projekt.c @@ -396,4 +396,6 @@ int subtraction(int a, int b) { return a - b; } - +int multiplication(int a, int b) { + return a * b; +}