// fol1.cpp
// practicing some function overloading
#include <iostream>
#include <string>
#include <iomanip>

using namespace std;

void test(int y) {
 cout << setw(10) << y << endl;
}

void test(float x) {
 cout << setw(10) << setprecision(3) << x << endl;
}

int main() {
 float x = 1.234567;
 int y = 5;
 test(x); 
 test(y); 
 return 0;
}

