using System;
int total = 0;
for (int bus = 1; bus <=7 ;bus++){
Console.Write("how many in bus " +bus+"?");
int students = int.Parse(Console.ReadLine());
total += students;
}
Console.Write(total+"sudents joined the trip")