what's the program tried to do/achieve? i dont get its purpose here.. would appericate if you can explain what's going on here :))
package com.codegym.task.task07.task0725;

/*
Move one static modifier

*/

public class Solution {
    public final static int A = 5;
    public final static int B = 2;
    public final static int C = A * B;

    public static void main(String[] args) {
    }

    public int getValue() {
        return C;
    }
}