Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)
Paste
Pasted as Plain Text by Ozy ( 13 years ago )
n = raw_input()
def cube(n):
f = n ** 3
print f
def by_three(n):
if n % 3 == 0:
print cube(n)
else:
print "Module is" n % 3
print by_three(n)
Revise this Paste
Parent: 60015