#include<iostream> void in(int); int main(int argc, char const *argv[]) { in(3); return 0; } inline void in(int x) { std::cout << x << '\n'; }