#include using namespace std; struct cww{cww(){ios::sync_with_stdio(false);cin.tie(0);}}star; #define P(x) cout << (x) << "\n" #define p(x) cout << (x) #define all(c) (c).begin(), (c).end() #define rall(c) (c).rbegin(), (c).rend() #define vv(type, c, m, n, i) vector> c(m, vector(n, i)) #define rep(i,a,n) for(int i=(a), i##_len=(n); ii##_len; --i) #define len(x) ((int)(x).size()) #define mp make_pair #define eb emplace_back #define fi first #define se second template inline T min(vector& v) {return *min_element(v.begin(), v.end());} template inline T max(vector& v) {return *max_element(v.begin(), v.end());} template inline T sum(vector& v) {return accumulate(v.begin(), v.end(), 0);} #define chmax(a,b) if(ab)a=b template inline void print(T t){cout << t << endl;} template inline void print(H h, T... t){cout << h << " ";print(t...);} typedef long long ll; typedef long double ld; typedef vector vi; typedef vector vd; typedef vector vll; typedef vector vs; typedef vector vb; typedef pair pii; int main() { string s[3]; rep(i, 0, 3) cin >> s[i]; int t = s[0] == "?" ? 0 : s[1] == "?" ? 1 : 2; vi v(3, 0); rep(i, 0, 3) if (i != t) v[i] = stoi(s[i]); for (int j: {1, 4}) { v[t] = j; if (min(v) == v[1] || max(v) == v[1]) cout << j; } cout << endl; return 0; }