Idade de Camila

Problem Link

Solution by dudu100 pts

Code / Notes

#include <bits/stdc++.h>
using namespace std;

int main() {
    int a, b, c; cin >> a >> b >> c;
    cout << a+b+c-max({a,b,c})-min({a,b,c}) << endl;
}

Last updated 1 month, 4 weeks ago


« Back to problem