/* Challenge 124 TASK #1 > Happy Women Day Submitted by: Mohammad S Anwar Write a script to print the Venus Symbol, international gender symbol for women. Please feel free to use any character. */ #include using namespace std; int main() { cout << " ^^^^^" << endl; cout << " ^ ^" << endl; cout << " ^ ^" << endl; cout << " ^ ^" << endl; cout << " ^ ^" << endl; cout << " ^ ^" << endl; cout << " ^ ^" << endl; cout << " ^ ^" << endl; cout << " ^ ^" << endl; cout << " ^ ^" << endl; cout << " ^^^^^" << endl; cout << " ^" << endl; cout << " ^" << endl; cout << " ^" << endl; cout << " ^^^^^" << endl; cout << " ^" << endl; cout << " ^" << endl; }