e = input("Enter the light level required in Lux ")
l = input("Enter the length of the room ")
w = input("Enter the width of the room ")
a = l*w
f = input("Enter the bare lamp lumens per fitting ")
uf = 0.85
n = (e*a)/(f*uf)
print round(n)
