13

int new(int year) {
return ++year;
}

...

long long int year = 2017;
cout << "Happy " << new(year) << "!";

Comments
Add Comment