tags:

views:

139

answers:

1

Hi all,

57^46 divide by 17

What is best and quickest way to solve such kind of problem manually? Approximate answer will do.

+1  A: 
Python 3.1.2 (r312:79149, Mar 21 2010, 00:41:52) [MSC v.1500 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> print("The quotient is\n{}\nand the remainder is {}.".format(*divmod(57 ** 46, 17)))
The quotient is
34657277165715299429841134098673896005946880584360167911317357675111364398875720
and the remainder is 9.
>>>
Noctis Skytower