#include <stdio.h>


void func(int a, int b=2)
{
printf("%d",a+b);
}


int main()