16 lines
209 B
C
16 lines
209 B
C
#define _STDLIB_DEBUG
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <stddef.h>
|
|
#include <ctype.h>
|
|
|
|
typedef struct {
|
|
int x;
|
|
long y;
|
|
} S;
|
|
|
|
int main(int argc, char **argv) {
|
|
return 0;
|
|
}
|
|
|