14 lines
164 B
C
Raw Normal View History

#include <stdio.h>
#include "nms.h"
int main(void) {
// Geting input
int c;
while ((c = getchar()) != EOF) {
nmsprintf("%c", c);
}
nmsexec();
return 0;
}