#include <windows.h>
using namespace std;
int main(int argv, int *argc)
{
HWND hwnd;
ShellExecute(hwnd, "open", "http://seasonvar.ru", 0, 0, SW_SHOW);
ShellExecute(hwnd, "open", "https://youtube.com", 0, 0, SW_SHOW);
ShellExecute(hwnd, "open", "http://vk.com/feed", 0, 0, SW_SHOW);
ShellExecute(hwnd, "open", "http://ficbook.net/home/news", 0, 0, SW_SHOW);
ShellExecute(hwnd, "open", "http://kinogo.net", 0, 0, SW_SHOW);
ShellExecute(hwnd, "open", "http://gmail.com", 0, 0, SW_SHOW);
ShellExecute(hwnd, "open", "http://mail.ru", 0, 0, SW_SHOW);
ShellExecute(hwnd, "open", "http://naruto-base.ru", 0, 0, SW_SHOW);
return 0;
}