import java.io.*; import java.util.*; import java.text.*; import java.math.*; import java.util.regex.*; public class Solution { static long sum_dig(int a) { long sum=0;int d=0; while(a>0) { d=a%10; sum+=d; a=a/10; } return sum; } static String canConstruct(int[] a,int n) { // Return "Yes" or "No" denoting whether you can construct the required number. long sum=0; for(int i=0;i