[ create a new paste ] login | about

Link: http://codepad.org/mre473GJ    [ raw code | output | fork ]

Python, pasted on Jun 30:
1
2
3
4
a = 7
b = 3
c = math.ceil(a/b)
print(c)


Output:
1
2
3
4
Traceback (most recent call last):
  Line 3, in <module>
    c = math.ceil(a/b)
NameError: name 'math' is not defined


Create a new paste based on this one


Comments: