#include <stdio.h>

int main() {

    int num=1;
    int total=0;
    
    while(num!=0){
        scanf("%d",&num);
        total=total+num;
    }
    printf("sum is %d",total);
    return 0;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: