A number theory problem by Ananya Mittal

Find the last 2 digits 11^2014


The answer is 41.

This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try refreshing the page, (b) enabling javascript if it is disabled on your browser and, finally, (c) loading the non-javascript version of this page . We're sorry about the hassle.

1 solution

1
2
3
4
5
6
temp = 1
for i in range(1,2015):
    temp *= 11
    temp %= 100

print temp

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...