#include int x; void f(); int main() { x = 1234; cout << x << endl; f(); cout << x << endl; }