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