#include <stdio.h> int main() { int sum = 0; for (int i = 1; i < 8; i++) { sum += 1; } printf("%d\n", sum); return 0; }