Roman Numerals

Write a program that prints out a number as it's roman numerals.

Wiki link for Roman numerals.

Examples conversions

1 -> I
2 -> II
3 -> III
4 -> IV

It can be tricky to do all numbers, so how about just to 10 first. If you like you can keep going to 100.