Skip to content
This repository was archived by the owner on Aug 30, 2023. It is now read-only.

Commit 13fa495

Browse files
authored
Fix Lint Error
Signed-off-by: Chaitanya Yadav <cy2000yadav@gmail.com>
1 parent 18012a4 commit 13fa495

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

contributors/cy2000yadav/helloworld.py

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
n = input()
2+
total = 0
3+
for ele in n:
4+
total += int(ele)
5+
6+
print("Sum of digits of the number " + n + " is", total)

0 commit comments

Comments
 (0)