In [6]:
a = 5
b = 6
c = 7

New and Improved Adder (float): $a^3 + 7*b + c$


In [7]:
d = a**3+ 7*b + c

In [8]:
print "A new cell"


A new cell

In [9]:
print "ERDC-CHL Demo Updated function"
print "INPUTS (a,b,c):", (a,b,c)
print "RESULTS: ", d


ERDC-CHL Demo Updated function
INPUTS (a,b,c): (5, 6, 7)
RESULTS:  174
{"inputs": {"a": "float", "b": "float", "c": "float"}}

In [ ]: