#include "iostream"
#include "stdlib.h"
#include "ctime"
using namespace std;
int main()
{
srand(time(NULL));
int snow = 0, rain = 0;
int osadok[31];
int t_weather[31];
for(int i = 0 ; i < 31; i++){
osadok[i] = rand()% 50;
t_weather[i] = rand()% 25 - 5;
}
for(int i = 0 ; i < 31; i++){
cout
}
for(int i = 0; i < 31; i++){
if(t_weather[i] > 0){
rain = rain + osadok[i];
}else{
snow = snow + osadok[i];
}
}
cout
cout
return 0;
}