package p;
class A{
	private static void foo() {
		int temp= 4;
		int temp1= temp;
		System.out.println(temp1);
	}
}