Advertisement
Guest User

Untitled

a guest
Apr 4th, 2020
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.21 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <time.h>
  3.  
  4. int main()
  5. {
  6.   long sum = 0;
  7.  
  8.   int i;
  9.   for (i = 0; i < 1000000; i++)
  10.   {
  11.     int value;
  12.     scanf(" %d", &value);
  13.     sum += value;
  14.   }
  15.  
  16.   printf("%ld\n", sum);
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement