public class Test {
public static void main(String[] args) {
Test t = new Test();
String s = new String("ello");
t.amethod(s);
System.out.println(s);
}
public void amethod(String s1) {
char c = 'H';
String result = "" + c + s1;
System.out.println(result);
}
}