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