12 lines
98 B
C
12 lines
98 B
C
|
#include <stdio.h>
|
||
|
|
||
|
|
||
|
int
|
||
|
main (void)
|
||
|
{
|
||
|
putc ('1', stderr);
|
||
|
putc ('2', stderr);
|
||
|
|
||
|
return 0;
|
||
|
}
|