mob
verb
Addition()
a = input("pick a number") as num
b = input("pick a number") as num
src<<"[a+b]"
Multiplication()
a = input("pick a number") as num
b = input("pick a number") as num
src<<"[a*b]"
Subtraction()
a = input("pick a number") as num
b = input("pick a number") as num
src<<"[a-b]"
Division()
a = input("pick a number") as num
b = input("pick a number") as num
src<<"[a/b]"
var/a,b
Is there a way that when a number is bigger than 65535 without that E thing?
By the way, you shouldn't use A and B as variables for public use. Maybe just verb variables, so it reduces bugs when playing with more than one person.
Then you may try and specifiy what you want from each input as well, like listed.
Alright, now, let's say you only want to display nine digits before getting into scientific notation. You would use num2text(mathhere,9)