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. /* Name of the class has to be "Main" only if the class is public. */
  18. class Ideone
  19. {
  20.  
  21.  
  22. public static void main (String[] args) throws java.lang.Exception
  23. {
  24. System.out.println("Simon Compa");
  25.  
  26.  
  27.  
  28. }
  29. }
Success #stdin #stdout 0.08s 47308KB
stdin
Standard input is empty
stdout
Simon Compa