2016-04-04 19:07:35 -07:00
|
|
|
#include <stdio.h>
|
2016-04-12 13:18:53 -07:00
|
|
|
#include "nms.h"
|
2016-04-04 19:07:35 -07:00
|
|
|
|
|
|
|
int main(void) {
|
|
|
|
// Geting input
|
2016-04-12 13:18:53 -07:00
|
|
|
int c;
|
2016-04-04 19:07:35 -07:00
|
|
|
while ((c = getchar()) != EOF) {
|
2016-04-12 13:18:53 -07:00
|
|
|
nmsprintf("%c", c);
|
2016-04-06 17:28:18 -07:00
|
|
|
}
|
2016-04-12 13:18:53 -07:00
|
|
|
nmsexec();
|
2016-04-04 19:07:35 -07:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|