public class blah { public static int x; public static void main(String [] args) { blah b = new blah(); blah.x = 5; b.x = 10; System.out.println("done."); }}