/*
*
* 4.17
*
*
*/
int main () {
// Prefix increments will increment the object by 1 and return the incremented object as result.
// Postfix increment will increment the object by 1 but return a copy of the object before being incremented.
return 0;
}