Idade de Camila
Problem LinkSolution by dudu — 100 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