import java.util.Scanner; public class Hw02 { public static void main(String[] args) { int birth; String zodiac; Scanner s = new Scanner(System.in); System.out.print(" 君は西暦何年生まれ? > "); birth = s.nextInt(); System.out.print(" 君の干支は何? > "); zodiac = s.next(); System.out.println("ふむむ。。あなたは " + birth + " 年生まれの " + zodiac + " なんだね!"); } }