#include <iostream>
int main() {
    int n{-3};
    int nonnegative = (n < 0) ? 0 : n;
    std::cout << nonnegative << "\n";
    int total{5};
    int divisor{0};
    int quotient = (divisor == 0) ? 0 : (total / divisor);
    std::cout << quotient << "\n";
    return 0;
}
