Skip to content
Snippets Groups Projects
programme2.cpp 228 B
#include <iostream>
using namespace std;

#include "max.hpp"

int main() {
    cout << "Entrez a et b:" << endl;
    int a, b;
    cin >> a >> b;
    cout << "Le maximum est: "
         << monMax(a, b) << endl;
    return 0;
}