#include <iostream>
using namespace std;
void fun1(int a,int b)
{
cout << __PRETTY_FUNCTION__<<endl;
}
void fun2(double a,int b)
{
cout << __PRETTY_FUNCTION__<<endl;
}
int main()
{
cout << __PRETTY_FUNCTION__<<endl;
int a = 0;
int b = 0;
double c = 0;
fun1(a,b);
fun2(c,a);
}