#include <iostream>
using namespace std;

int main() {
    string s="PraVeEn";
    cout<<s<<"\n";
    for(int i=0;i<s.size();i++){
        s[i]=tolower(s[i]);
    }
    cout<<s<<"\n";
    return 0;
}

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: