package com.codegym.task.task02.task0205;

/*
Pay raise

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

    public static void hackSalary(int a) {
         int b = a+1000;
        System.out.println("your salary is: "+b+" dollars per month.");
//write your code here
    }
}
where did i missed?