import java.io.IOException;
import java.util.Scanner;
public class fflush{
public static void main(String [] args) throws IOException{
Scanner input=new Scanner(System.in);
int a;
System.out.print("Enter an integer:");
a = input.nextInt();
String b,c;
System.out.print("Enter a string:");
b = input.nextLine();
System.out.print("Enter another string:");
c = input.nextLine();
}
}
//結果は//
整数を入力してください:4
文字列を入力してください:別の文字列を入力してください: