#include <stdio.h>
void show(){
     printf("%d",a);
}
int main() {
   int a=10;
   printf("%d",a);
   show();
    return 0;
}