#include #include #include #include "windows.h" using namespace std; void gotoxy(int x, int y) { COORD c; c.X = x - 1; c.Y = y - 1; SetConsoleCursorPosition (GetStdHandle(STD_OUTPUT_HANDLE), c); } int main(int argc, char *argv[]) { int a, b; gotoxy(25,10); cout<<"Witamy w Grze o nazwie WONSZ!!!!!"; gotoxy(1,15);//trzecia ramka cout<