#include #include #include #include #include #include #include int val(int n){ int s=0; while(n!=0){ s+=n%10; n/=10; } return s; } char* canConstruct(int a_size, int* a) { // Return "Yes" or "No" denoting whether you can construct the required number. int sum=0; for(int i=0;i