#Given
u=1.536
#Calculation
import math
p=math.atan(u)*180/3.14
r=90-p
#Result
print"Angle of refraction is", round(r,1),"degree"
#Given
p=60 #degree
#Calculation
import math
u=math.tan(p*3.14/180.0)
C=1/u
C1=math.asin(C)*180/3.14
#Result
print"Critical angle is", round(C1,1),"Degree"
#Given
a=60 #degree
b=100
#Calculation
import math
a1=90-a
A=a/2.0
I=(math.cos(A*3.14/180.0)**2)/2.0
I0=b*I
#result
print"Unpolarised light is", round(I0,1),"%"