1 #include "path2.h"
2 
path2(int x)3 int path2(int x)
4 {
5 	return x*42;
6 }
7 
8