UVA 10079 - Pizza Cutting

Problem PDF

Solution:

#include 

int main()
{
    long int n,a;
    while(scanf("%ld", &n)==1)
    {
        if( n>=0 && n<=210000000)
        {
            a= ((n*(n+1))/2)+1;
            printf("%ld\n", a);
        }
        else if(n<0)
        break;
    }
    return 0;
}
https://github.com/Shipu/OnlineJudgeProblemSolutionWithCPlusPlus/tree/master/uva/10079/10079.cpp