Hey! You are giving the constructor your variables in the wrong order.
Personal(string name, int staj, int salary, string job, int client)
As you can see. It takes string, int, int, string and then int.
Personal temp(name, job, staj, salary, client);
Here you are giving it string, string, int, int and int. Just change the order.
Personal temp(name, staj, salary, job, client);
Thanks man you're awesome!