Schrijf een functie echo die steeds haar argument naar standaarduitvoer schrijft.

Voorbeeld in Python

>>> echo("5"); 
"5"
>>> echo("OK");
"OK"