Connection to blynk2.0 error

/*************************************************************

  You’ll need:
   - Blynk IoT app (download from App Store or Google Play)
   - ESP32 board
   - Decide how to connect to Blynk
     (USB, Ethernet, Wi-Fi, Bluetooth, ...)

  There is a bunch of great example sketches included to show you how to get
  started. Think of them as LEGO bricks  and combine them as you wish.
  For example, take the Ethernet Shield sketch and combine it with the
  Servo example, or choose a USB sketch and add a code from SendData
  example.
 *************************************************************/

/* Fill-in information from Blynk Device Info here */
#define BLYNK_TEMPLATE_ID "TMPL39J8sJhep"
#define BLYNK_TEMPLATE_NAME "Esp32 Home Automation"
#define BLYNK_AUTH_TOKEN "usnoQiJQaKI6XZMNFc8NV240d_ORloDf"

/* Comment this out to disable prints and save space */
#define BLYNK_PRINT Serial


#include <WiFi.h>
#include <WiFiClient.h>
#include <BlynkSimpleEsp32.h>

// Your WiFi credentials.
// Set password to "" for open networks.
char ssid[] = "Redmi12";
char pass[] = "me202020";

void setup()
{
  // Debug console
  Serial.begin(115200);

  Blynk.begin(BLYNK_AUTH_TOKEN, ssid, pass);
  // You can also specify server:
  //Blynk.begin(BLYNK_AUTH_TOKEN, ssid, pass, "blynk.cloud", 80);
  //Blynk.begin(BLYNK_AUTH_TOKEN, ssid, pass, IPAddress(192,168,1,100), 8080);
}

void loop()
{
  Blynk.run();
  // You can inject your own code or combine it with other sketches.
  // Check other examples on how to communicate with Blynk. Remember
  // to avoid delay() function!
}```

the message that show on serial monitor is

[1676] Connecting to blynk.cloud:80
[6719] Connecting to blynk.cloud:80
[11733] Connecting to blynk.cloud:80
[16741] Connecting to blynk.cloud:80
[21750] Connecting to blynk.cloud:80
[26760] Connecting to blynk.cloud:80
[31768] Connecting to blynk.cloud:80
[36779] Connecting to blynk.cloud:80
[41787] Connecting to blynk.cloud:80
[46794] Connecting to blynk.cloud:80```

its just display the messages. Please help to resolve this issue

@Unique Please edit your post, using the pencil icon at the bottom, and add triple backticks at the beginning and end of your code and your serial monitor output so that they display correctly.
Triple backticks look like this:
```

Copy and paste these if you can’t find the correct symbol on your keyboard.

Pete.