Problem 341:
Given a point $M_{a}$, a point $M_{b}$ and a point $M_{c}$, construct the triangle ABC.

Construction: 
1. Using the point $M_{a}$ and the point $M_{c}$, construct a line $M_{c}M_{a}$ (rule W02);
2. Using the point $M_{b}$ and the point $M_{c}$, construct a line $M_{c}M_{b}$ (rule W02);
3. Using the point $M_{a}$ and the line $M_{c}M_{b}$, construct a line $a$ (rule W16);
4. Using the point $M_{b}$ and the line $M_{c}M_{a}$, construct a line $b$ (rule W16);
5. Using the line $b$ and the line $a$, construct a point $C$ (rule W03);
6. Using the point $C$ and the point $M_{a}$, construct a point $B$ (rule W01);
7. Using the point $M_{b}$ and the point $C$, construct a point $A$ (rule W01);
8. Using the point $B$ and the point $C$, construct a point $\_M_{a}$ (rule W01);
9. Using the point $C$ and the point $A$, construct a point $\_M_{b}$ (rule W01);
10. Using the point $A$ and the point $B$, construct a point $\_M_{c}$ (rule W01);

Statement:
Prove that the point $M_{c}$ is identical to the point $\_M_{c}$.

