fork download
  1. import java.util.Scanner;
  2. public class Main{
  3. public static void main(String[] args){
  4. Scanner in = new Scanner(System.in);
  5. Double a = in.nextDouble();
  6. System.out.println("hello"+a);
  7. }
  8. }
  9.  
Success #stdin #stdout 0.04s 25336KB
stdin
Standard input is empty
stdout
import java.util.Scanner;
public class Main{
    public static void main(String[] args){
        Scanner in = new Scanner(System.in);
        Double a = in.nextDouble();
        System.out.println("hello"+a);
    }
}