document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. import java.util.Scanner;
  2. public class first {
  3. public static void main(String[] args) {
  4. Scanner cin = new Scanner(System.in);
  5. String s;
  6. while(cin.hasNext()) {
  7. s = cin.nextLine();
  8. System.out.println("hello, " + s);
  9. }
  10. }
  11. }
  12.  
  13.  
');