Add the "min" method to this program.
#include <iostream>
using namespace std;

int main()
{
    int num1, num2;
    cout << "Please enter two numbers: ";
    cin >> num1 >> num2;
    cout<< "The smaller number is " << min(num1, num2) << endl;

    return 0;
}