#include using namespace std; int main(){ int a[3],N;cin>>N; for(int i=0;i<3;i++){ a[i]=N%10; N/=10; } cout<<(a[0]+a[2]==a[1] ? "Yes":"No")<