#include <iostream>
using namespace std;
int main()
{
float x, sumpoz=0, sumneg=0;
cin>>x;
while (x!=0)
{if (x<0)
sumneg+=x;
else
sumpoz+=x;
cin>>x;}
cout<<"Suma numerelor pozitive este "<<sumpoz<<", iar cea a numerelor negative este "<<sumneg<<endl;
return 0;
}
// sumneg= suma numerelor negative
// sumpoz= suma numerelor pozitive