index
:
clp
main
A small Python compiler with optimizer written in Java
dcariotti
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
progs
/
a742.py
blob: 907c58be7377133daaae89e5aa9ff548da9a456b (
plain
)
1
2
3
def
surfacearea_cuboid
(
l
,
w
,
h
):
SA
=
2
*
(
l
*
w
+
l
*
h
+
w
*
h
)
return
SA