I'm new to Java and can't seem to understand why this code doesn't work. Any input would be appreciated. Thx.
Public class MyClass
int a;
float b = 1.5;
public void static main(String args) {
MyClass mc = MyClass();
mc.a = 1.5;
system.out.println(b);
}