You are grading an arithmetic quiz. The quiz asks a student for the sum of two numbers, and the student writes down one answer. Decide whether that answer is correct.
Input
The first and only line contains a string of the form a + b = c. Each of a, b, c is a single-digit positive integer, so 1≤a,b,c≤9. The line is exactly 9 characters long, with one space between every number and symbol.
Output
Print YES on the first line if the sum is correct, and NO otherwise.