/ C code// This program will calculate the sum of 10 positive integers
/ C code// This program will calculate the sum of 10 positive integers.//
Developer: Faculty CMIS102// Date: Jan 31, XXXX#include int main (){/* variable definition: */int count, value, sum;double avg;/* Initialize */count = 0;sum = 0;avg = 0.0;// Loop through to input valueswhile (count = 0) { sum = sum + value; count = count + 1; } else { printf(“Value must be positive\n”); }}// Calculate avg. Need to type cast since two integers will yield an integeravg = (double) sum/count;printf(“average is %lf\n ” , avg );return 0;} My question is where do I input my numbers?