
Donald W. answered 03/08/22
Experienced and Patient Tutor for Math and Computer Science
#include <iostream>
using namespace std;
int main(int argc, char **argv) {
int num;
cin >> num;
if ((num % 3) == 0) {
cout << "Go";
}
if ((num % 5) == 0) {
cout << "Lakers";
}
cout << endl;
return 0;
}