public class Main {
    class Box{
        int weight;
        int year;
        Box (int year, int weight){
            this.year = year;
            this.weight = weight;
        }
        double obema(){
            return year*weight;
        }
    }

    public static void main(String[] args) {
        Box box1 =new Box(66, 60);
        System.out.println("обэма -" + box1.obema());// write your code here
    }

}
выбивает Error:(17, 20) java: non-static variable this cannot be referenced from a static context подскажите что не так попробовал сам код написать