| I | 1 | 
 
| V | 5 | 
 
| X | 10 | 
 
| L | 50 | 
 
| C | 100 | 
 
| D | 500 | 
 
| M | 1000 | 
 
 
 | 
  Integers in Roman numerals are written using two rules. 
- If the letter is immediately followed by one of equal or lesser value then the two values are added.
 - If the letter is immediately followed by one of greater value then the first is subtracted from the second.
  
So for your example LXII = 50+10+1+1=62, but XLII=50-10+1+1=42 and LXIV=50+10+5-1=64.  
 |