string @s;
if (s[0] == 'x') {
  string t;
  ll sz = s.size();
  rep(i, 1, sz) {
    t.push_back(s[i]);
  }
  wt(4294967296LL - stoll(t));
} else {
  wt(s);
}