10 lines
130 B
C
10 lines
130 B
C
|
#include<stdio.h>
|
||
|
|
||
|
int stack(void);
|
||
|
int list(void);
|
||
|
|
||
|
int main(int argc, char **argv) {
|
||
|
stack();
|
||
|
getchar();
|
||
|
return 0;
|
||
|
}
|