10 lines
232 B
Java
10 lines
232 B
Java
|
|
import java.util.Scanner;
|
||
|
|
|
||
|
|
public class GetInput {
|
||
|
|
public static void main(String[] args) {
|
||
|
|
Scanner stdin = new Scanner(System.in);
|
||
|
|
String string = stdin.nextLine();
|
||
|
|
int number = stdin.nextInt();
|
||
|
|
}
|
||
|
|
}
|