Problem hidden
|This problem was hidden by Editorial Board member probably because it has incorrect language|version or invalid test data, or description of the problem is not clear.|

RGB8005 - Цифрүүдийн нийлбэр

Өгөгдсөн тооны цифрүүдийн нийлбэрийг ол.

Input

Нэг тоо өгөгдөнө. / Integer төрөл /

Output

Цифрүүдийн нийлбэр

Example

Input:
157

Output:
13

Нэмсэн:Bataa
Огноо:2010-01-04
Хугацааны хязгаарлалт:0.100s
Эх кодын хэмжээний хязгаарлалт:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Програмчлалын хэлүүд:ADA95 ASM32 ASM64 BASH BF C CSHARP C++ 4.3.2 CPP CPP14 C99 CLPS LISP sbcl LISP clisp D ERL FORTRAN HASK ICON ICK JAVA JS-RHINO LUA NEM NICE OCAML PAS-GPC PAS-FPC PERL PHP PIKE PRLG-swi PYTHON RUBY SCALA SCM guile SCM qobi ST TCL TEXT WHITESPACE

hide comments
2024-01-19 07:25:18
#include<iostream>
using namespace std;

int main() {
int a,s = 0;
cin >> a;
while(a > 0) {
int b = a % 10;
s += b;
a /= 10;
}
cout << s;
}
2020-04-08 13:50:54
mai
#include<bits/stdc++.h>
using namespace std;
int main()
{
unsigned long long int n;
cin>>n;
long int s=0,m=n;
while(n>0){
s=s+n%10;
n=n/10;
}
cout<<s;
return 0;
}
2019-02-23 06:21:02
<3
2013-04-05 03:58:02 bayar
bodoltuud yaj vzeh be
2013-03-14 17:05:32 Onkhruush
**


Last edit: 2013-03-14 17:05:58
2012-09-24 02:16:10 chingis
solongo codoo yawuuldaa
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.