#include<iostream.h>
void main()
{
long int t,n,sum,i;
cin>>t;
sum=0;
for (i=0;i<t;i++)
{
cin>>n;
if (n>0)
{
sum=sum+n;
}
}
cout<<"\n"<<sum;
}
the online judge is saying that it is a wrong answer could you please tell me where I am going wrong as soon as possible