Gabe Ron

101
reputation
1
#include <iostream>
#include <string>
#include "stackover.h"
using namespace std;

int main(){
    StackOverflow community;

    string question;
    getline(cin, question);

    if (question){
        community.flag("duplicate");
        throw 8;
    }

    return 0;
}