#include <iostream>
using namespace std;

int main()
{
	cout<< "The following items were top sellers\n";
	cout<< "During the month of June:\n";
	cout<< "Computer games\n";
	cout<< "Coffee\n";
	cout<< "Aspirin\n";
	return 0;
}
