#32289:


j812018@nehs.hc.edu.tw (嗨)

學校 : 國立科學工業園區實驗高級中學
編號 : 152750
來源 : [101.10.45.143]
最後登入時間 :
2023-01-19 22:25:33
e286. 籃球比賽 -- APCS | From: [36.227.157.69] | 發表日期 : 2022-09-26 23:51

//============================================================================
// Name        : 000000.cpp
// Author      : 
// Version     :
// Copyright   : Your copyright notice
// Description : Hello World in C++, Ansi-style
//============================================================================

#include <iostream>
using namespace std;

int main() {
    int a=0,b=0,c=0,d=0,a1,b1,c1,d1;
    for(int i=0;i<4;++i){
        cin >>a1;
        a = a+a1;
    }
    for(int i=0;i<4;++i){
            cin >>b1;
            b = b+b1;
        }
    for(int i=0;i<4;++i){
            cin >>c1;
            c = c+c1;
        }
    for(int i=0;i<4;++i){
            cin >>d1;
            d = d+d1;
        }
    cout <<a<<":"<<b<<endl;
    cout <<c<<":"<<d<<endl;
    if(a>b&&c>d){
        cout << "Win";

    }
    else if(b>a&&d>c){
        cout <<"Lose";
    }
    else{
        cout <<"Tie";
    }
    return 0;
}

 
ZeroJudge Forum