/* package whatever; // don't place package name! */
import java.util.*;
import java.lang.*;
import java.io.*;
import java.util.Scanner;
/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
{
Scanner scan
= new Scanner
(System.
in); while(scan.hasNextLine()){
System.
out.
println("-- NEXT LINE --"); int i = 0;
if (scan.hasNextInt())
i = scan.nextInt();
double d = 0d;
if (scan.hasNextDouble())
d = scan.nextDouble();
System.
out.
println("String: " + s
); System.
out.
println("Double: " + d
); System.
out.
println("Int: " + i
); }
scan.close();
}
}