13 lines
144 B
C
13 lines
144 B
C
|
#include <stdio.h>
|
||
|
#include <Windows.h>
|
||
|
#include "func.h"
|
||
|
|
||
|
|
||
|
int main() {
|
||
|
SetConsoleCP(1251);
|
||
|
SetConsoleOutputCP(1251);
|
||
|
|
||
|
Menu();
|
||
|
|
||
|
return 0;
|
||
|
}
|