#include <iostream.h>

int get(int in);
float get(float in);
float get(int in1,float in2);

int main()
{
int one=10;
float two=5.5;
	cout<<get(one)<<"\n";
	cout<<get(two)<<"\n";
	cout<<get(one,two)<<"\n";
	return 0;

}

int get(int in)
{
	return in*in;
}

float get(float in)
{
	return in+5;
}

float get(int in1,float in2)
{
	return in1+in2;
}

