#include using namespace std; typedef long long ll; int pow(ll x, int n, int m){ int res = 1; while(n > 0){ if(n & 1) res = res * x % m; x = x * x % m; n >>= 1; } return res; } int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int cnt = 0; for(int i = 0; i < 3; ++i){ ll a, b; cin >> a >> b; cnt += pow(a, b, 2); } cout << ((cnt % 2 == 0) ? ":-)\n" : ":-(\n"); }