Examples of Standard In/Standard Out Processing
Perl
PHP
Python
Note: In python 2.6 and 2.7, place a comma after the print to suppress newline:
print(name),
In python 3, use the
end=
clasue:
print(name, end="")
Ruby
Java