#include #include using namespace std; int main () { int n=10; int p=20; void fct(int=8, int =12); fct(n,p); fct(n); fct(); } void fct(int a , int b) { cout <<" premier"<< a<< endl; cout <<" second"<< b<< endl; }