A method's signature consists of the method name and
the sequence of types used to declare the method's parameters.
publicclass MainClass {
publicstaticvoid main(String[] argv) {
System.out.println();
}
publicint main(String[] argv) {
System.out.println();
}
}