fork download
  1. import java.util.*;
  2. import java.lang.*;
  3. import java.io.*;
  4.  
  5. interface A111{
  6. String s = "yo";
  7. public void method1();
  8. }
  9.  
  10. interface B{}
  11.  
  12. interface c extends A111,B{
  13. public void method1();
  14. public void method1(int x);
  15. }
  16.  
  17. class Ideone
  18. {
  19.  
  20.  
  21. public static void main (String[] args) throws java.lang.Exception
  22. {
  23. System.out.println("Simon Compa");
  24.  
  25.  
  26.  
  27. }
  28. }
Success #stdin #stdout 0.08s 51112KB
stdin
Standard input is empty
stdout
Simon Compa