#include <iostream>

int main() {
    int total{7};
    int batches{3};
    double result = total / batches;
    std::cout << result << '\n';
    return 0;
}
