From 6dc89cc441542b131958fe8b6084fbd118043820 Mon Sep 17 00:00:00 2001 From: chestamittal <53469607+chestamittal@users.noreply.github.com> Date: Tue, 20 Oct 2020 01:40:10 +0530 Subject: [PATCH] Update math/lcm_sum.cpp Co-authored-by: David Leal --- math/lcm_sum.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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) {