#include <iostream>

int soma(int n1, int n2 = 5) { return n1 + n2; }

int main() { std::cout << soma(5) << std::endl; }

//https://pt.stackoverflow.com/q/514913/101