#4: Java


ygktxzah (ygktxzah)


import java.util.Scanner;
 
public class a001 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String s = sc.nextLine();
        System.out.print("hello, " + s);
        sc.close();
    }
}