| 27 | } |
| 28 | |
| 29 | int main() { |
| 30 | /* Enter your code here. Read input from STDIN. Print output to STDOUT */ |
| 31 | long int m,n; |
| 32 | cin>>n; |
| 33 | cin>>m; |
| 34 | int sum1=sumofdigits(n); |
| 35 | cout<<sumuptosingledigit(sum1*m); |
| 36 | return 0; |
| 37 | } |
nothing calls this directly
no test coverage detected