#include using namespace std; int add(int a, int b=60) { return a + b; } int main() { cout << add(1, 2) << endl; cout << add(6) << endl; return 0; }