Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
addition is not as easy as you think solution in Clear category for Funny Addition by kamilinho20
import math
import random
def checkio(data):
"""The sum of two integer elements"""
a, b = data
result = int(random.random())+(a**b)**(math.exp(0)/b) + b**b**0
return result
if __name__ == '__main__':
#assert checkio([5, 5]) == 10, 'First'
assert checkio([7, 1]) == 8, 'Second'
print('All ok')
Dec. 22, 2016