#include "stdafx.h"#include <iostream>#include <string>using namespace std;
int main(){ string S1, S2; int k = 0, k2 = 0; while (S1 != "stop" || S2 != "stop") { cin >> S1 >> S2; if (S1 == "Computer")k++; if (S2 == "Computer")k2++; } cout << "Cuvantul Computer,a fost introdus de:" << k + k2;}