#include<stdio.h>
#include<conio.h>
void main()
{
char search[50];
clrscr();
window(1,1,80,60);
textbackground(BLACK);
clrscr();
//textcolor(WHITE);
//gotoxy(15,15);
//cprintf("Password :");
//textbackground(YELLOW);
//window(39,12,43,12);
//clrscr();
//textcolor(RED);
//printf("Login");
//printf("hello world");
gotoxy(38,8);
textcolor(6);
cprintf("G");
gotoxy(39,8);
textcolor(6);
cprintf("o");
gotoxy(40,8);
textcolor(WHITE);
cprintf("o");
gotoxy(41,8);
textcolor(WHITE);
cprintf("g");
gotoxy(42,8);
textcolor(GREEN);
cprintf("l");
gotoxy(43,8);
textcolor(GREEN);
cprintf("e");
//gotoxy(45,24);
//cprintf(" Founder:- RT LavKush");
textbackground(GREEN);
window(52,12,63,12);
clrscr();
//printf("Google");
textcolor(BLUE);
cprintf(" Go");
//textcolor(11);
//cprintf(" %c",26);
textbackground(WHITE);
textcolor(BLACK);
window(20,12,60,12);
clrscr();
gets(search);
window(1,1,80,25);
textbackground(YELLOW);
clrscr();
getch();
}