0 / 60 seg.

What is the result of this program?

interface Foo {
    int x = 10;
}
public class Main{
    public static void main(String[] args) {
        Foo.x = 20;
        System.out.println(Foo.x);
    }
}