2024-11-15 16:08:26 +04:00
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <Windows.h>
|
2024-11-15 16:06:04 +04:00
|
|
|
|
|
2024-11-15 16:08:26 +04:00
|
|
|
|
void main()
|
2024-11-15 16:06:04 +04:00
|
|
|
|
{
|
2024-11-15 16:08:26 +04:00
|
|
|
|
SetConsoleCP(1251);
|
|
|
|
|
SetConsoleOutputCP(1251);
|
2024-11-15 16:06:04 +04:00
|
|
|
|
|
2024-11-15 16:08:26 +04:00
|
|
|
|
printf("Тимкин Денис");
|
|
|
|
|
printf("ПИбд-14");
|
|
|
|
|
}
|