#include <iostream>
usingnamespace std;
int smallest();
int main()
{
int a, b;
int x;
x = smallest();
cout << x << " is the smallest." << endl;
return 0;
}
int smallest()
{
cout << "Enter two numbers and I will tell you which is the smallest." << endl;
int num1, num2;
cin >> num1 >> num2;
int smallest = num1 < num2 ? num1 : num2;
return (num1, num2);
}