#include #include "Score.h" using namespace std; int main() { Score score1("John", 90); Score score2("Mary", 80); string name; int math; cin >> name >> math; score1.setName(name); cin >> name >> math; score2.setMath(math); score1.print(); score2.print(); return 0; }