import java.util.Scanner; public class Stdinout { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int x = sc.nextInt(); sc.nextLine(); String y = sc.nextLine(); sc.close(); System.out.println("Int: " + x); System.out.println("String " + y); } }