There are a few cases where the date is written as 'created ca. 1858-60', where a human reader would understand it as 'created ca 1858-1860.'
As such, imagine two integers representing years.
a = 1858
b = 60
I want to be able to get a+b == 1859.
I could parse them to strings, take the first two characters ('18'), concatinate the shorter string and parse them back to numbers, sure, but..that seems a bit round-a-bound.
What would be the Pythonic way to deal with this?