
class ATest {
	public static void main(String[] args) {
		A a = new A();

		a.foo();        // calling static method with instance

		A.foo();        // calling static method using class name

		System.out.println(Math.sqrt(25));
	}
}
