Resolve Driver Collision

#include <iostream>
using namespace std;

// Create namespaces DriverA and DriverB here
namespace DriverA {
    void init() {
        cout << "A INIT";
    }
}

namespace DriverB {
    void init() {
        cout << "B INIT";
    }
}

int main() {
    int x;
    cin >> x;

    // Call correct namespace function here
    (x == 1) ? DriverA::init() : DriverB::init();

    return 0;
}
Upvote
Downvote
Loading...

Input

1

Expected Output

A INIT