public class Main{ int i; void print(){ System.out.println(i); } public static void main(String[] args) { new Test().print(); } }