fork download
  1. /** Created by : Tipu **/
  2. /** Date : 19-12-2024 **/
  3. /** Time : 18:01:03 **/
  4. #include<iostream>
  5. using namespace std;
  6. int main(){
  7.  
  8. int N; cin>>N;
  9.  
  10. int Digit; cin>>Digit;
  11.  
  12. int Arr[N];
  13. int k = 0;
  14.  
  15. int x;
  16. while(Digit != 0){
  17.  
  18. x = Digit % 10;
  19.  
  20. Arr[k] = x;
  21. k = k + 1;
  22.  
  23. Digit = Digit / 10;
  24. }
  25.  
  26. int Sum = 0;
  27.  
  28. for(auto xx : Arr){
  29. Sum = Sum + xx;
  30. }
  31.  
  32. cout<<Sum;
  33.  
  34. return 0;
  35. }
Success #stdin #stdout 0.99s 5284KB
stdin
Standard input is empty
stdout
1512570755