// argconv.cpp: Argument coversion from int to float.
#include<iostream>
using namespace std;

float f(float x) {
 return x*x/6;
}

int main() {
 float t = 7;
 cout << f(5) << endl;
 cout << f(t) << endl;
 return 0;
}
