All submissions
#include <iostream>
using namespace std;

// your code here: declare and define printValue(int)
void printValue(int x) {
    cout << "Value=" << x << "\n";
}

// your code here: declare and define printValue(float)
void printValue(float x) {
    cout << "Value=" << x << "\n";
}

int main() {
   float val;
   cin >> val;
   if (val == (int)val) {
       printValue((int)val); // int version
   } else {
       printValue(val);      // float version
   }
   return 0;
}
Loading...

Input

42

Expected Output

Value=42