import java.util.*;
public class Solution {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
String myString= scanner.next();
int myInt =scanner.nextInt();
scanner.close();
System.out.println("myStringis:" + myString);
System.out.println("myIntis:" + myInt);
}
}
i need output as
Sample Input
42
100
125
Sample Output
42
100
125
Compiler Message
Wrong Answer
Input (stdin)
42
100
125
Expected Output
42
100
125