0% found this document useful (0 votes)
7 views

Document

Uploaded by

hoibui.10101970
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
7 views

Document

Uploaded by

hoibui.10101970
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 4

import threading

import time

cake='''

_..._ ,s$$$s. _..._ ,s$$$s.

.$$$$$$$s$$ss$$$$, .$$$$$$$s$$ss$$$$,

$$$sss$$$$s$$$$$$$
$$$sss$$$$s$$$$$$$

$$ss$$$$$$$$$$$$$$ ( )
$$ss$$$$$$$$$$$$$$

'$$$s$$$$$$$$$$$$' ) (*) (*) (


'$$$s$$$$$$$$$$$$'

'$$$$$$$$$$$$$$' (*) | | (*) '$$$$$$$$$$$$$$'

S$$$$$$$$$$$' | |~| |~| | S$$$$$$$$$$$'

'$$$$$$$$$' |~| || || |~| '$$$$$$$$$'

'$$$$$' || || || || '$$$$$'

'$$$' ,| |a@@@@| |@@@@@@@@@@@| |@@@@a| |.


'$$$'

; .,a@@@| |@@@@@| |@@@@@@@@@@@| |@@@@@|


|@@@@a,. ;

; ,a@@@@@@|
|@@@@@@@@@@@@.@@@@@@@@@@@@@@| |@@@@@@@a, ;

; a@@@@@@@@@@@@@@@@@@@@@' .
`@@@@@@@@@@@@@@@@@@@@@@@@a ;

', ;`@@@@@@@@@@@@@@@@@@' .
`@@@@@@@@@@@@@@@@@@@@@'; ',

; ;@@@`@@@@@@@@@@@@@' .
`@@@@@@@@@@@@@@@@'@@@; ;

,' ;@@@;,.aaaaaaaaaa . aaaaa,,aaaaaaa,;@@@; ,'


; ;;@;;;;@@@@@@@@;@ @.@ ;@@@;;;@@@@@@;;;;@@;
;

', ;;;;;;;@@@@;@@;;@ @@ . @@ ;;@;;;;@@;@@@;;;;;;; ',

', ;;;;;;;;@@;;;;;;; @@ . @@ ;;;;;;;;;;;@@;;;;@;; ',

; ;;;;;;;;;;;;;;;;;@@ . @@;;;;;;;;;;;;;;;;@@@; ;

' ,%%%;;;;;;;;@;;;;;;;; . ;;;;;;;;;;;;;;;;@@;;%%%, '

.%%%%%%;;;;;;;@@;;;;;;;; ,%%%, ;;;;;;;;;;;;;;;;;;;;%%%%%%,

.%%%%%%%;;;;;;;@@;;;;;;;; ,%%%%%%%, ;;;;;;;;;;;;;;;;;;;;%%%%%%%,

%%%%%%%%`;;;;;;;;;;;;;;;; %%%%%%%%%%% ;;;;;;;;;;;;;;;;;;;'%%%%%%%%

%%%%%%%%%%%%`;;;;;;;;;;;;,%%%%%%%%%%%%%,;;;;;;;;;;;;;;;'%%%%%%%%%%%%

`%%%%%%%%%%%%%%%%%,,,,,,,%%%%%%%%%%%%%%%,,,,,,,%%%%%%%%%%%%%%%%
%%%%'

`%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%'

`%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%'

""""""""""""""`,,,,,,,,,'"""""""""""""""""

`%%%%%%%'

`%%%%%'

%%%

%%%%%

.,%%%%%%%,.

,%%%%%%%%%%%%%%%%%%%,

'''
wish='''

/$$ /$$ /$$ /$$ /$$ /$$ /$$

| $$ | $$ | $$ |__/ | $$ | $$ | $$

| $$ | $$ /$$$$$$ /$$$$$$ /$$$$$$ /$$ /$$ | $$$$$$$ /$$ /$$$$$$ /$$$$$$ | $$$$$$$
/$$$$$$$ /$$$$$$ /$$ /$$

| $$$$$$$$ |____ $$ /$$__ $$ /$$__ $$| $$ | $$ | $$__ $$| $$ /$$__ $$|_ $$_/ | $$__ $$ /$$__
$$ |____ $$| $$ | $$

| $$__ $$ /$$$$$$$| $$ \ $$| $$ \ $$| $$ | $$ | $$ \ $$| $$| $$ \__/ | $$ | $$ \ $$| $$ | $$


/$$$$$$$| $$ | $$

| $$ | $$ /$$__ $$| $$ | $$| $$ | $$| $$ | $$ | $$ | $$| $$| $$ | $$ /$$| $$ | $$| $$ | $$


/$$__ $$| $$ | $$

| $$ | $$| $$$$$$$| $$$$$$$/| $$$$$$$/| $$$$$$$ | $$$$$$$/| $$| $$ | $$$$/| $$ | $$|


$$$$$$$| $$$$$$$| $$$$$$$

|__/ |__/ \_______/| $$____/ | $$____/ \____ $$ |_______/ |__/|__/ \___/ |__/ |__/ \_______/
\_______/ \____ $$

| $$ | $$ /$$ | $$ /$$ | $$

| $$ | $$ | $$$$$$/ | $$$$$$/

|__/ |__/ \______/ \______/

'''

def task1():

for letter in cake:

time.sleep(0.01)

print(letter, end='')

for letter in wish:

time.sleep(0.01)
print(letter, end='')

t1 = threading.Thread(target=task1, name='t1')

t1.start()

You might also like