#include <iostream>
using namespace std;
 fn1(int Arg){
        int a = 10;
 }
 int main(){
    cout << "fn1(): " << fn1(22) << endl;
    return 0;
}