Give the output of the following code: int a = 10; int b = 20; String s = Integer.toString(a); String t = Integer.toString(b); System.out.println((s+t));
int a = 10; int b = 20;
String s = Integer.toString(a);
String t = Integer.toString(b);
System.out.println((s+t));