int square(int x) { return x * x; } int main() { return square(3); }