12 lines
174 B
C++
12 lines
174 B
C++
#include <stdio.h>
|
|
#include <Windows.h>
|
|
|
|
void main()
|
|
{
|
|
SetConsoleCP(1251);
|
|
SetConsoleOutputCP(1251);
|
|
|
|
printf("Тимкин Денис");
|
|
printf("ПИбд-14");
|
|
}
|
|
//342
|