public class Solution {
    public static void main(String[] args) {
        int a = 5;
        int b=7;
        int sum = a+b;
        int product=a*b;
        System.out.println(sum);
        System.out.println(product);

    }
}
so yeah i don't get what do they mean with declare the variables in the second requirement, i simply don't get what do they want me to do lol