A,B,C,D=map(int,input().split()) n=31-A+B if n>=C: print('1') elif C>n>=D: print('2') else: print('3')