Welcome to the Fun with BigNum!

Count from left to right
Type '0' to start
Type 'q' to stop.

Get ready



Tips&hints:
- Basic algorithm for left-to-right sum is
1. Sum highest-order digits;
2. Move to lower digits and check for three cases:
- if sum of the digits is not greater than 8, your sum is done;
- if sum of the digits is equal or greater than 10, add 1 to sum;
- if sum of the digits is equal to 9, follow the point 2 again.
3. Check this method on example 1877 + 1123.
- Edit field have to be clean after every time you type digits sum, if is not cleaned, you've made a mistake.
- Time measurement is in milliseconds;

Return to simple addition

For programmers we also have
hexdemical addition test
Time (ms)Average of 10(s)
Level Bignum!
Attempts
Best one
Best avg of 10
Last avg of 10
Title
Next mark
First Attempt
Last Attempt