import math
##Intitalisation of variables
a= 265. ##cm^2
mw= 256. ##gm
N= 6.02*10**23 ##molecules
m= 5.19*10**-5 ##gms
##CALCULATIONS
asm= (a*mw)/(N*m)
##RESULTS
print'%s %.1e %s'% ('Area per single molecule = ',asm,' cm^2')
import math
##Intitalisation of variables
c1= 0.01 ##M
c2= 0.01 ##M
c3= 1. ##M
##CALCULATIONS
r1= (c1+c2)/c2
r2= (c3+c2)/c3
##RESULTS
print'%s %.2f %s'% ('Ratio = ',r1,'')
print'%s %.2f %s'% ('\n Ratio = ',r2,'')