import java.io.IOException; public class Main { public interface M { public static double cos(double theta) { return theta; } } public class T implements M { public static double cos(double theta) { return theta; } } public static void main(String[] args) { System.out.println("Hello World!"); } }