#include <iostream>
using namespace std;
void  func(int n) { }

int main() {
          int (a);
	int b = int(a);
	func(int(a));
	return 0;
}