import sys; input = sys.stdin.buffer.readline sys.setrecursionlimit(10**7) from collections import defaultdict con = 10 ** 9 + 7; INF = float("inf") def getlist(): return list(map(int, input().split())) #処理内容 def main(): X, Y, Z = getlist() if X % 3 != 0 and Y % 3 != 0 and Z % 3 != 0: print("No") else: print("Yes") if __name__ == '__main__': main()