#include int runner() { static int count = 0; count++; return count; } int main() { printf("%d ", runner()); printf("%d ", runner()); return 0; }