View Code of Problem 122

#include <iostream>
using namespace std;
int main(){
    int t;
    cin>>t;
    int n;
    cin>>n;
    if (n%2==0){
        cout<<"Alice";
    } else{
        cout<<"Bob";
    }


}

Double click to view unformatted code.


Back to problem 122