[ create a new paste ] login | about

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

Python, pasted on Jun 30:
1
2
3
4
5
6
import math

a = 7
b = 3
c = math.ceil(a/b)
print(c)


Output:
1
2.0


Create a new paste based on this one


Comments: