Write the pseudocode for a program to calculate the wages of a sales according to the following rules. The wage is calculated at a rate of 15% of sales. If the salesman has been with the company more than three years, he receives a loyalty bonus of 10% of his calculated wages.

use variable.no.of sales,no.of years of type integer

answer of type real
Display."enter no.you want to use"
Accept.number
IF wage<>sales*0.15
THEN salary:=wage+loyality
ELSE if no. of year.3
THEN loyality:=wage*0.1
ELSE loyality=0

Certainly! Here's the pseudocode for the program:

```
1. Start
2. Initialize the variables:
- sales (input)
- years (input)
- wage (output)
3. Calculate the wage:
- wage = sales * 0.15
4. Check if the years of service are more than three:
- if years > 3 then
- Add loyalty bonus to the wage:
- wage = wage + (wage * 0.10)
5. Display the wage as the output
6. End
```

To implement this pseudocode in a programming language, you would need to input the values for `sales` and `years`, perform the calculations, and output the resulting wage. The specific syntax and implementation details will depend on the programming language you choose.