summaryrefslogtreecommitdiff
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