[C++] AtCoder Beginner Contest 189 A번 Slot

AtCoder Beginner Contest 189 A번 Slot

문제

https://atcoder.jp/contests/abc189/tasks/abc189_a abc189_a

풀이

이름에서 알 수 있듯이 슬롯머신을 의미하는 것이다.

문자 3개를 받아서 세 문자가 모두 일치하면 Won, 아니면 Lost 출력

코드

#pragma warning(disable : 4996)
#include <bits/stdc++.h>
#define all(x) (x).begin(), (x).end()
using namespace std;
typedef long long ll;
typedef long double ld;
typedef vector<ll> vll;
typedef pair<ll, ll> pll;
typedef pair<ld, ld> pld;
typedef tuple<ll, ll, ll> tl3;
#define FOR(a, b, c) for (int(a) = (b); (a) < (c); ++(a))
#define FORN(a, b, c) for (int(a) = (b); (a) <= (c); ++(a))
#define rep(i, n) FOR(i, 0, n)
#define repn(i, n) FORN(i, 1, n)
#define tc(t) while (t--)
// https://atcoder.jp/contests/abc189/tasks/abc189_a
int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    char s[3];
    rep(i,3) cin >> s[i];
    if(s[0] == s[1] && s[1] == s[2]) 
        cout << "Won";
    else
        cout << "Lost";

    return 0;
}