Algorithm
손승열(Son Seungyeol)
[Codeforces][C++] Game with Board
Educational Codeforces Round 150 Problem A

![[Codeforces][C++] Game with Board](https://www.datocms-assets.com/66479/1686837917-1.png?auto=format&w=860)
⌨️ Solution Code
cpp
#include <bits/stdc++.h>
using namespace std;
string solve(int n){
if(n<5) return "Bob\n";
return "Alice\n";
}
int main()
{
int t, n;
cin>>t;
while(t--){
cin>>n;
cout<<solve(n);
}
}