#include #define rep(i,n) for(int i=0; i<(n); i++) using namespace std; typedef long long ll; int main(){ int ans=0; rep(i,3){ int a,b; cin>>a>>b; if(a%2!=0&&b%2!=0) ans+=0; else ans++; } if(ans==3||ans==1) cout << ":-)" << endl; else cout << ":-(" << endl; }