-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path18)Task 15(CP).cpp
More file actions
20 lines (19 loc) · 1.28 KB
/
18)Task 15(CP).cpp
File metadata and controls
20 lines (19 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <iostream>
using namespace std;
int main(){
system("cls");
system("color 70");
cout<<" ___..............._ "<<endl;
cout<<" __.. ' _'.]]- .'-._ "<<endl;
cout<<" ______.-' (_) | ]] ' ]]'-. _ "<<endl;
cout<<" /_ --------------'-------]]---....______]]__'.' -..___ "<<endl;
cout<<" | T _.----._ Xxx|x... | _.._'--. _ "<<endl;
cout<<" | | .' ..--.. '. XXX|XXXXXXXXXxx== | .'.---..'. -._ "<<endl;
cout<<" |_j / / __ ) ) XXX|XXXXXXXXXxx== | / / __ ) ) '-. "<<endl;
cout<<" _| | | / ) | | XXX|' | | | / ) | | | "<<endl;
cout<<" |__)_| | (__/ | |__________|_______________|_____| | (__/ | |__________J "<<endl;
cout<<" '')( / ./__________________________________( ( / /___________) "<<endl;
cout<<" '.'----'.' dp '.'----'.' "<<endl;
cout<<" '' '' "<<endl;
return 0;
}