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