From ecc6bf9943c32d65799fe971f6e15ccac0c66d0c Mon Sep 17 00:00:00 2001 From: Tiago Collot Date: Wed, 9 Nov 2022 12:44:08 +0000 Subject: [PATCH] docs(sumthemall): upgrade instructions --- subjects/sumthemall/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/sumthemall/README.md b/subjects/sumthemall/README.md index 02bd31aa..6b54b56d 100644 --- a/subjects/sumthemall/README.md +++ b/subjects/sumthemall/README.md @@ -2,7 +2,7 @@ ### Instructions -Create a program that receives a number of arguments representing whole numbers and displays the sum of the total. If there are not enough arguments or there is an overflow display 0 followed by a new line. If one of the arguments is not a number display 0 followed by a new line. +Create a program that takes `int`´s as arguments and returns the sum of all of them. If it is not a number, there are not enough arguments, or if there is an overflow, print `0` followed by a newline `\n`. ### Usage