import java.util.Scanner; public class Sample3_3 { public static void main(String[] args) { Scanner stdin = new Scanner(System.in); int z; float x; String m; System.out.print("好きな数は? > "); z = stdin.nextInt(); System.out.print("好きな有理数は? > "); x = stdin.nextFloat(); System.out.print("どこの生まれじゃね? > "); m = stdin.next(); System.out.print("ふ〜む。お主は " + z + " と " + x + " が好きで "); System.out.println(m + " 出身なんじゃな"); } }