#include <stdio.h>

void f() {}
void g() {}

int main(void) {
	f(1);
    g(2);
	return 0;
}