(algorithm workbench) Write assignment statements that perform the following operations with the variables a,b, and c.

To write assignment statements that perform operations with the variables a, b, and c, you need to specify what operations you want to perform. Here are some examples of common operations:

1. Addition: To perform addition with variables a, b, and c, you can use the following assignment statement:
```
c = a + b
```

2. Subtraction: To perform subtraction with variables a, b, and c, you can use the following assignment statement:
```
c = a - b
```

3. Multiplication: To perform multiplication with variables a, b, and c, you can use the following assignment statement:
```
c = a * b
```

4. Division: To perform division with variables a, b, and c, you can use the following assignment statement:
```
c = a / b
```

5. Modulo: To perform modulo (remainder) operation with variables a, b, and c, you can use the following assignment statement:
```
c = a % b
```

Remember to substitute the actual variable names (a, b, and c) with the appropriate variable names you are using in your program.