fork download
  1. import java.io.*;
  2.  
  3. public class PizdecNahuy {
  4. public static void main (String[] args) throws IOException {
  5. BufferedReader bufferedreader = new BufferedReader(new InputStreamReader(System.in));
  6. int a = Integer.parseInt(bufferedreader.readLine());
  7. System.out.println(a);
  8. }
  9. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
Main.java:3: error: class PizdecNahuy is public, should be declared in a file named PizdecNahuy.java
public class PizdecNahuy {
       ^
1 error
stdout
Standard output is empty