#include #include #include using namespace std; int main(){ int x, y; vector> a{{"Drew", "Won" , "Lost"}, {"Lost", "Drew", "Won" }, {"Won" , "Lost", "Drew"}}; cin >> x >> y; cout << a[x][y] << "\n"; return 0; }