#include using namespace std; // This function takes a parameter. void printCrap(int x){ cout << "buckys favorite numbner is " << x << endl; } int main() { printCrap(854); // Call the function. return 0; }