?
/*************************************************************************
> File Name: ex1.25.cpp
> Author:
> Mail:
> Created Time: Thu 18 Jan 2024 02:55:01 PM CST
************************************************************************/
#include<iostream>
#include"Sales_item.h"
using namespace std;
int main(){
Sales_item total;
if(cin>>total){
Sales_item trans;
while(cin>>trans){
if(total.isbn() == trans.isbn()){
total += trans;
}
else{
cout<<total<<endl;
total = trans;
}
}
cout<<total<<endl;
}
else{
cerr<<"No data?!"<<endl;
return -1;
}
return 0;
}