Subset Sum Easy unable to print string without quotes

I am getting the output yes but unable to print string without quotes

import java.util.*; public class Main { public static void main(String args[]) { Scanner sc = new Scanner(System.in); int sum = sc.nextInt(); int n = sc.nextInt(); int[] set = new int[n]; for(int i=0;i<n;i++) { set[i]=sc.nextInt(); } String str1=“Yes”; String str2=“No”; if (isSubsetSum(set, n, sum) == true) System.out.print((“Yes”).toCharArray()); else System.out.print((“No”).toCharArray()); } static boolean isSubsetSum(int set[], int n, int sum) { // Base Cases if (sum == 0) return true; if (n == 0 && sum != 0) return false; if (set[n-1] > sum) return isSubsetSum(set, n-1, sum); return isSubsetSum(set, n-1, sum) || isSubsetSum(set, n-1, sum-set[n-1]); } }

Hi Anjali,
I am unable to read your code properly. Please paste over online coding blocks IDE,save and provide the link Or provide with proper indentation.