?
/*************************************************************************
> File Name: ex1.16.cpp
> Author:
> Mail:
> Created Time: Thu 18 Jan 2024 10:36:09 AM CST
************************************************************************/
#include<iostream>
using namespace std;
int main(){
int sum = 0, value = 0;
while(cin>>value){
sum += value;
}
cout<<"sum = "<<sum<<endl;
return 0;
}