x , y , z = map(int , input().split()) if (0 not in [x , y , z]) and (x + y + z == 180): print('Yes') else: print('No')