/*************************************************************************> File Name: ex3.24.cpp> Author: > Mail: > Created Time: Thu 01 Feb 2024 09:25:53 AM CST************************************************************************/#include<iostream>#include<vector>#include<cctype>usingnamespace std;intmain(){int num;vector<int> arr;while(cin>>num){arr.push_back(num);}for(auto beg = arr.begin(); beg != arr.end()-1; beg = beg +1){cout<<*beg +*(beg +1)<<" ";}cout<<endl;for(auto beg = arr.begin(), end = arr.end()-1; beg <= end; beg = beg +1, end if(beg == end){cout<<*beg<<endl;}else{cout<<*beg +*end<<" ";}}return0;}