diff --git a/math/lcm_sum.cpp b/math/lcm_sum.cpp index 91cd6832e..dca5530d2 100644 --- a/math/lcm_sum.cpp +++ b/math/lcm_sum.cpp @@ -8,14 +8,14 @@ * @author [Chesta Mittal](https://github.com/chestamittal) */ -#include // for std::cin std::cout -#include // for assert -#include // dor std::vector +#include /// for std::cin and std::cout +#include /// for assert +#include /// for std::vector /** * Function to compute sum of euler totients in sumOfEulerTotient vector * @param num input number - * @returns int + * @returns int Sum of LCMs, i.e. ∑LCM(i, num) from i = 1 to num */ int lcmSum(int num) {