import math.Addition; // Imports the fixed Addition class

class MathUse {
    public static void main(String args[]) {
        int a = 10;
        int b = 20;
        
        // Calling the static method from the Addition class
        int c = Addition.Add(a, b);
        
        System.out.println("Sum of Addition of " + a + " and " + b + " is " + c);
    }
}
