Decimal positional notation, the system for writing numbers we all use every single day, makes addition very easy by transforming it from a computation to a repeated operation on individual digits (long hand addition). A more formal description would be that if two numbers $a$ and $b$ are presented in decimal notation, long hand addition is a constant-memory, logarithmic time algorithm to obtain the decimal notation of the number $a+b$.
Multiplication (that is, long multiplication) is not so easy in decimal notation, requiring doubly logarithmic memory and logarithmic time while relying heavily on long hand addition as a "subroutine".
It is of course straightforward to invent a numeral system where the roles of the two operations are reversed: Just use the decimal notation of $\log(a)$ to denote the number $a$. Multiplication then becomes as simple as long hand addition in standard notation, because $\log(ab)=\log(a)+\log(b)$ (this is the principle behind the slide rule). Unfortunately, the price one has to pay for this convenience is that addition is suddenly very difficult.
Is there a numeral system that provides a balance between these two extremes, that is, a system for writing numbers in such a way that both addition and multiplication can be done by hand with less effort than decimal long multiplication, but perhaps greater effort than decimal long addition? (Note the focus on still being a system that is of practical use for manual computations; I doubt anyone would be able to execute the Schönhage–Strassen algorithm by hand, even it it has better asymptotic complexity than long multiplication.)