Sunday, March 20, 2016

URI 1132 - Multiples of 13

#include<stdio.h>
main()
{
    long long x, y, temp=0 , sum=0, i;
    scanf("%lld %lld",&x,&y);
    if(x>y){
            temp=x;
            x=y;
            y=temp;
            for(i=x; i<=y; i++){
            if(i%13!=0)
                sum+=i;
        }
        printf("%lld\n",sum);
    }
    else{
        for(i=x; i<=y; i++){
            if(i%13!=0)
                sum+=i;
        }
        printf("%lld\n",sum);
}
}

No comments:

Post a Comment