public class attributesTest { int x = 10; int y = 20; public static void main(String[] args) { attributesTest at = new attributesTest(); System.out.println(at.x); at.x=29; System.out.println(at.x); attributesTest at2 = new attributesTest(); at2.x = 67; System.out.println(at2.x); } }