public class Solution {
    public static void main(String[] args) {
        hackSalary(8000);
    }

    public static void hackSalary(int a) {
        a=a+1000;
        System.out.print("Your salary is: " +a+ " dollars per month"); //write your code here
    }
}