Input
A line containing an integer.
35
Output
A line containing a string.
Out
package out;
import java.util.Scanner;
public class Out {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int d = scan.nextInt();
System.out.println("out");
}
}
Comments
Leave a comment