Untitled
Anonymous
plain_text
03/31/2022 12:23 PM
476 B
18
Indexable
import java.io.*;
import java.util.Scanner;
import java.util.concurrent.*;
public class IO {
public static void main(String[] args) throws IOException{
BufferedReader bf = new BufferedReader(new InputStreamReader(System.in));
String s = bf.readLine();
System.out.write(s.getBytes());
System.out.flush();
}
}
Editor is loading...