Mike:
The reason that I call your limits arbitrary is because neither the compiler nor the computer impose any limits on arithmetic precision. The book "Numerical Recipes in C - The art of Scientific Computing" shows how to do this with numbers stored as strings. You can look at the book at the following url:
http://apps.nrbook.com/c/index.html
20.6 Aritmetic at Arbitrary Precision, pg. 915.
This book has been released in other programming languages if you use something other than 'C'.
You can also find some great information on this subject in the book "Seminumerical Algorithms" v2. You really need to want to learn the subject to wade through this book. To be "fair" to everyone the author made up his own harware with its own assembly language which he uses in all of his example code. But he does show how to perform math on numbers of arbitrary precision. I wrote the addition, subtraction, multiplication and division routines in machine code on a comodore 64. They really are quite simple.
But I mention again that it shouldn't be even that hard:
1) Store the user entered limit in a string.
2) Comparing the stored value to the UCI returned value takes a couple of steps:
a) If the strings are of diferent lengths then the longest is automatically the greatest.
b) if the strings are the same length then compare them.