#include <iostream>
using namespace std;
// your code here: declare and define printValue(int)
void printValue(int a)
{
std::cout<<"Value="<<a<<std::endl;
}
void printValue(float b)
{
std::cout<<"Value="<<b<<std::endl;
}
// your code here: declare and define printValue(float)
int main() {
float val;
cin >> val;
if (val == (int)val) {
printValue((int)val); // int version
} else {
printValue(val); // float version
}
return 0;
}