2. Write the output of the following cout statement.
auto f1 (auto&, auto&);
auto f2 (auto, auto&);
auto f1 (auto &a, auto &b) { a++; b++; }
auto f2 (auto a, auto &b) { a += 3; b -= 2; }
int main()
{
auto a = 4, b = 7;
f1 (a,b);
f2 (a,b);
cout << a << "," << b;
return 0;
}