This repository has been archived by the owner on Oct 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGREATEST_COMMON_DIVISOR.html
467 lines (320 loc) · 25.3 KB
/
GREATEST_COMMON_DIVISOR.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
<hr>
<p><strong>GREATEST_COMMON_DIVISOR</strong></p>
<hr>
<p><span style="background:#ffff00">The <a style="background:#ff9000;color:#000000" href="https://en.wikipedia.org/wiki/C%2B%2B" target="_blank" rel="noopener">C++</a> program featured in this tutorial web page computes the <a style="background:#ff9000;color:#000000" href="https://en.wikipedia.org/wiki/Greatest_common_divisor" target="_blank" rel="noopener">greatest common divisor</a> of two <a style="background:#000000;color:#ff9000" href="https://karlinaobject.wordpress.com/numbers/" target="_blank" rel="noopener">natural numbers</a>, A and B, using the <a style="background:#ff9000;color:#000000" href="https://en.wikipedia.org/wiki/Euclidean_algorithm" target="_blank" rel="noopener">Euclidean algorithm</a> to iteratively (i.e. in a step-by-step manner) divide A by B in order to obtain the nonnegative integer <a style="background:#ff9000;color:#000000" href="https://en.wikipedia.org/wiki/Remainder" target="_blank" rel="noopener">remainder</a> of that division and then (in the next step (if there is a next step)) set A to B and B to that remainder before dividing A by B in order to obtain the nonnegative integer of that division (and continuing that process until a remainder of zero is obtained). When a remainder of zero is obtained, the least common denominator of the original A and B values is the latest value of B.</p>
<p><em>To view hidden text inside each of the preformatted text boxes below, scroll horizontally.</em></p>
<pre>
// <a style="background:#ff9000;color:#000000" href="https://en.wikipedia.org/wiki/Pseudocode" target="_blank" rel="noopener">Pseudocode</a> describing how the Euclidean algorithm is used to compute the greatest common divisor of positive integers A and B.
PROCEDURE gcd(A,B):
WHILE B IS NOT EQUAL TO ZERO:
LET remainder be the result of the computation A mod B.
LET A be B.
LET B be remainder.
END WHILE
RETURN B.
END PROCEDURE
</pre>
<hr>
<p><strong>SOFTWARE_APPLICATION_COMPONENTS</strong></p>
<hr>
<p>C++_source_file: <a style="background:#000000;color:#00ff00" href="https://raw.githubusercontent.com/karlinarayberinger/KARLINA_OBJECT_extension_pack_21/main/greatest_common_divisor.cpp" target="_blank" rel="noopener">https://raw.githubusercontent.com/karlinarayberinger/KARLINA_OBJECT_extension_pack_21/main/greatest_common_divisor.cpp</a></p>
<p>plain-text_file: <a style="background:#000000;color:#ff9000" href="https://raw.githubusercontent.com/karlinarayberinger/KARLINA_OBJECT_extension_pack_21/main/greatest_common_divisor_output.txt" target="_blank" rel="noopener">https://raw.githubusercontent.com/karlinarayberinger/KARLINA_OBJECT_extension_pack_21/main/greatest_common_divisor_output.txt</a></p>
<hr>
<p><strong>PROGRAM_COMPILATION_AND_EXECUTION</strong></p>
<hr>
<p>STEP_0: Copy and paste the C++ <a style="background:#000000;color:#00ff00" href="https://raw.githubusercontent.com/karlinarayberinger/KARLINA_OBJECT_extension_pack_21/main/greatest_common_divisor.cpp" target="_blank" rel="noopener">source code</a> into a new text editor document and save that document as the following file name:</p>
<pre>greatest_common_divisor.cpp</pre>
<p>STEP_1: Open a <a style="background:#ff9000;color:#000000" href="https://en.wikipedia.org/wiki/Unix" target="_blank" rel="noopener">Unix</a> command line terminal application and set the current directory to wherever the C++ program file is located on the local machine (e.g. Desktop).</p>
<pre>cd Desktop</pre>
<p>STEP_2: Compile the C++ file into machine-executable instructions (i.e. object file) and then into an executable piece of software named <strong>app</strong> using the following command:</p>
<pre>g++ greatest_common_divisor.cpp -o app</pre>
<p>STEP_3: If the program compilation command does not work, then use the following commands (in top-down order) to install the C/C++ compiler (which is part of the <a style="background: #ff9000;color: #000000" href="https://en.wikipedia.org/wiki/GNU_Compiler_Collection" target="_blank" rel="noopener">GNU Compiler Collection (GCC)</a>):</p>
<pre>sudo apt install build-essential</pre>
<pre>sudo apt-get install g++</pre>
<p>STEP_4: After running the <strong>g++</strong> command, run the executable file using the following command:</p>
<pre>./app</pre>
<p>STEP_5: Once the application is running, the following prompt will appear:</p>
<pre>Enter the first of two natural numbers (which will be stored in an int type variable named A) which is no larger than 10000: </pre>
<p>STEP_6: Enter a value for A using the keyboard.</p>
<p>(Proceed from there inputting B and other program values in accordance to the prompt messages).</p>
<p>STEP_7: Observe program results on the command line terminal and in the <a style="background:#000000;color:#ff9000" href="https://raw.githubusercontent.com/karlinarayberinger/KARLINA_OBJECT_extension_pack_21/main/greatest_common_divisor_output.txt" target="_blank" rel="noopener">output file</a>.</p>
<hr>
<p><strong>PROGRAM_SOURCE_CODE</strong></p>
<hr>
<p>The text in the preformatted text box below appears on this web page (while rendered correctly by the <a style="background:#ff9000;color:#000000" href="https://en.wikipedia.org/wiki/HTML" target="_blank" rel="noopener">web browser</a>) to be identical to the content of the <a style="background:#ff9000;color:#000000" href="https://en.wikipedia.org/wiki/C%2B%2B" target="_blank" rel="noopener">C++</a> source code file whose <a style="background:#ff9000;color:#000000" href="https://en.wikipedia.org/wiki/URL" target="_blank" rel="noopener">Uniform Resource Locator</a> is displayed in the green <a style="background:#ff9000;color:#000000" href="https://en.wikipedia.org/wiki/Hyperlink" target="_blank" rel="noopener">hyperlink</a> below. A <a style="background:#ff9000;color:#000000" href="https://en.wikipedia.org/wiki/Computer" target="_blank" rel="noopener">computer</a> interprets that C++ source code as a series of programmatic instructions (i.e. <a style="background:#ff9000;color:#000000" href="https://en.wikipedia.org/wiki/Software" target="_blank" rel="noopener">software</a>) which govern how the <a style="background:#ff9000;color:#000000" href="https://en.wikipedia.org/wiki/Computer_hardware" target="_blank" rel="noopener">hardware</a> of that computer behaves.</p>
<p><em>(Note that angle brackets which resemble <a style="background:#ff9000;color:#000000" href="https://en.wikipedia.org/wiki/HTML" target="_blank" rel="noopener">HTML</a> tags (i.e. an “is less than” symbol (i.e. ‘<‘) followed by an “is greater than” symbol (i.e. ‘>’)) displayed on this web page have been replaced (at the source code level of this web page) with the Unicode symbols <a style="background:#ff9000;color:#000000" href="https://en.wikipedia.org/wiki/Less-than_sign" target="_blank" rel="noopener">U+003C</a> (which is rendered by the web browser as ‘<‘) and <a style="background:#ff9000;color:#000000" href="https://en.wikipedia.org/wiki/Greater-than_sign" target="_blank" rel="noopener">U+003E</a> (which is rendered by the web browser as ‘>’). That is because the <a style="background:#ff9000;color:#000000" href="https://en.wikipedia.org/wiki/WordPress.com" target="_blank" rel="noopener">WordPress</a> web page editor or web browser interprets a plain-text version of an “is less than” symbol followed by an “is greater than” symbol as being an opening HTML tag (which means that the WordPress web page editor or web browser deletes or fails to display those (plain-text) inequality symbols and the content between those (plain-text) inequality symbols)).</em></p>
<p>C++_source_file: <a style="background:#000000;color:#00ff00" href="https://raw.githubusercontent.com/karlinarayberinger/KARLINA_OBJECT_extension_pack_21/main/greatest_common_divisor.cpp" target="_blank" rel="noopener">https://raw.githubusercontent.com/karlinarayberinger/KARLINA_OBJECT_extension_pack_21/main/greatest_common_divisor.cpp</a></p>
<hr>
<pre>
/**
* file: greatest_common_divisor.cpp
* type: C++ (source file)
* date: 26_SEPTEMBER_2024
* author: karbytes
* license: PUBLIC_DOMAIN
*/
/** preprocessing directives */
#include <iostream> // standard input (std::cin), standard output (std::cout)
#include <fstream> // output file creation, output file overwriting, output file open, output file close
#define MAXIMUM_INPUT_VALUE 10000 // constant which represents the maximum value for A and for B
/** function prototype */
void print_greatest_common_divisor_computation_steps(int A, int B, std::ostream& output);
/** program entry point */
int main()
{
// Declare and initialize three int type variables.
int A = 1, B = 1, input_additional_values = 1;
// Declare a file output stream handler.
std::ofstream file;
/**
* If the file named greatest_common_divisor.txt does not already exist
* inside of the same file directory as the file named greatest_common_divisor.cpp,
* create a new file named greatest_common_divisor_output.txt in that directory.
*
* Open the plain-text file named greatest_common_divisor_output.txt
* and set that file to be overwritten with program data.
*/
file.open("greatest_common_divisor_output.txt");
// Print an opening message to the command line terminal.
std::cout << "\n\n--------------------------------";
std::cout << "\nStart Of Program";
std::cout << "\n--------------------------------";
// Print an opening message to the file output stream.
file << "--------------------------------";
file << "\nStart Of Program";
file << "\n--------------------------------";
// Print "This C++ program computes the greatest common divisor of two natural numbers and prints the steps involved." to the command line terminal and to the file output stream.
std::cout << "\n\nThis C++ program computes the greatest common divisor of two natural numbers and prints the steps involved.";
file << "\n\nThis C++ program computes the greatest common divisor of two natural numbers and prints the steps involved.";
while (input_additional_values != 0)
{
// Print a horizontal divider line to the command line terminal and to the file output stream.
std::cout << "\n\n--------------------------------";
file << "\n\n--------------------------------";
// Prompt the user to enter an input value for A (and print that prompt to the command line terminal and to the file output stream).
std::cout << "\n\nEnter the first of two natural numbers (which will be stored in an int type variable named A) which is no larger than " << MAXIMUM_INPUT_VALUE << ": ";
file << "\n\nEnter the first of two natural numbers (which will be stored in an int type variable named A) which is no larger than " << MAXIMUM_INPUT_VALUE << ": ";
// Scan the command line terminal for the most recent keyboard input value. Store that value in A.
std::cin >> A;
// Print "The value which was entered for A is {A}." to the command line terminal and to the file output stream.
std::cout << "\nThe value which was entered for A is " << A << ".";
file << "\n\nThe value which was entered for A is " << A << ".";
/**
* If A is smaller than 1 or if A is larger than MAXIMUM_INPUT_VALUE, set A to 1.
*
* Print "A has been reset to 1 due to the fact that the input value for A was either less than one or else greater than {MAXIMUM_INPUT_VALUE}."
* to the command line terminal and to the file output stream.
*/
if ((A < 1) || (A > MAXIMUM_INPUT_VALUE))
{
A = 1;
std::cout << "\n\nA has been reset to 1 due to the fact that the input value for A was either less than one or else greater than " << MAXIMUM_INPUT_VALUE << ".";
file << "\n\nA has been reset to 1 due to the fact that the input value for A was either less than one or else greater than " << MAXIMUM_INPUT_VALUE << ".";
}
// Print a horizontal divider line to the command line terminal and to the file output stream.
std::cout << "\n\n--------------------------------";
file << "\n\n--------------------------------";
// Prompt the user to enter an input value for B (and print that prompt to the command line terminal and to the file output stream).
std::cout << "\n\nEnter the second of two natural numbers (which will be stored in an int type variable named B) which is no larger than " << MAXIMUM_INPUT_VALUE << ": ";
file << "\n\nEnter the second of two natural numbers (which will be stored in an int type variable named B) which is no larger than " << MAXIMUM_INPUT_VALUE << ": ";
// Scan the command line terminal for the most recent keyboard input value. Store that value in B.
std::cin >> B;
// Print "The value which was entered for B is {B}." to the command line terminal and to the file output stream.
std::cout << "\nThe value which was entered for B is " << B << ".";
file << "\n\nThe value which was entered for B is " << B << ".";
/**
* If B is smaller than 1 or if B is larger than MAXIMUM_INPUT_VALUE, set B to 1.
*
* Print "B has been reset to 1 due to the fact that the input value for B was either less than one or else greater than {MAXIMUM_INPUT_VALUE}."
* to the command line terminal and to the file output stream.
*/
if ((B < 1) || (B > MAXIMUM_INPUT_VALUE))
{
B = 1;
std::cout << "\n\nB has been reset to 1 due to the fact that the input value for B was either less than one or else greater than " << MAXIMUM_INPUT_VALUE << ".";
file << "\n\nB has been reset to 1 due to the fact that the input value for B was either less than one or else greater than " << MAXIMUM_INPUT_VALUE << ".";
}
// Print a horizontal divider line to the command line terminal and to the file output stream.
std::cout << "\n\n--------------------------------";
file << "\n\n--------------------------------";
// Execute the greatest common divisor function (defined by this C++ source file) such that the computation steps and final result are printed to the comand line terminal.
print_greatest_common_divisor_computation_steps(A, B, std::cout);
// Execute the greatest common divisor function (defined by this C++ source file) such that the computation steps and final result are printed to the file output stream.
print_greatest_common_divisor_computation_steps(A, B, file);
// Ask the user whether or not to continue inputing values.
std::cout << "\n\nWould you like to input new values for A and B? (Enter 1 if YES. Enter 0 if NO): ";
// Scan the command line terminal for the most recent keyboard input value.
std::cin >> input_additional_values;
}
// Print a closing message to the command line terminal.
std::cout << "\n\n--------------------------------";
std::cout << "\nEnd Of Program";
std::cout << "\n--------------------------------\n\n";
// Print a closing message to the file output stream.
file << "\n\n--------------------------------";
file << "\nEnd Of Program";
file << "\n--------------------------------";
// Close the file output stream.
file.close();
// Exit the program.
return 0;
}
/**
* Use the Euclidean algorithm to compute the greatest common divisor of positive integers A and B.
*
* (This function assumes that A and B are each natural numbers which are not too large to be overflow values (i.e. values which are too large to be properly represented as positive quantities in the C++ int type variable)).
*
* (This function assumes that output is either std::cout, some ofstream object (pointing to a valid output file), or some other valid C++ output stream object).
*
* Print each step of that iterative process to the output stream.
*/
void print_greatest_common_divisor_computation_steps(int A, int B, std::ostream& output)
{
int i = 0, remainder = 0;
output << "\n\nComputing the greatest common divisor of A and B using the Euclidean algorithm...";
while (B != 0)
{
remainder = A % B;
output << "\n\nstep_" << i << ": ";
output << "A = " << A << ", B = " << B << ", gcd(A,B) = A % B = " << remainder << ".";
A = B;
B = remainder;
i += 1;
}
output << "\n\nThe greatest common divisor of A and B is " << A;
}
</pre>
<hr>
<p><strong>SAMPLE_PROGRAM_OUTPUT</strong></p>
<hr>
<p>The text in the preformatted text box below was generated by one use case of the C++ program featured in this <a style="background:#ff9000;color:#000000" href="https://en.wikipedia.org/wiki/Computer_programming" target="_blank" rel="noopener">computer programming</a> tutorial web page.</p>
<p>plain-text_file: <a style="background:#000000;color:#ff9000" href="https://raw.githubusercontent.com/karlinarayberinger/KARLINA_OBJECT_extension_pack_21/main/greatest_common_divisor_output.txt" target="_blank" rel="noopener">https://raw.githubusercontent.com/karlinarayberinger/KARLINA_OBJECT_extension_pack_21/main/greatest_common_divisor_output.txt</a></p>
<hr>
<pre>
--------------------------------
Start Of Program
--------------------------------
This C++ program computes the greatest common divisor of two natural numbers and prints the steps involved.
--------------------------------
Enter the first of two natural numbers (which will be stored in an int type variable named A) which is no larger than 10000:
The value which was entered for A is 10.
--------------------------------
Enter the second of two natural numbers (which will be stored in an int type variable named B) which is no larger than 10000:
The value which was entered for B is 9.
--------------------------------
Computing the greatest common divisor of A and B using the Euclidean algorithm...
step_0: A = 10, B = 9, gcd(A,B) = A % B = 1.
step_1: A = 9, B = 1, gcd(A,B) = A % B = 0.
The greatest common divisor of A and B is 1
--------------------------------
Enter the first of two natural numbers (which will be stored in an int type variable named A) which is no larger than 10000:
The value which was entered for A is 10.
--------------------------------
Enter the second of two natural numbers (which will be stored in an int type variable named B) which is no larger than 10000:
The value which was entered for B is 20.
--------------------------------
Computing the greatest common divisor of A and B using the Euclidean algorithm...
step_0: A = 10, B = 20, gcd(A,B) = A % B = 10.
step_1: A = 20, B = 10, gcd(A,B) = A % B = 0.
The greatest common divisor of A and B is 10
--------------------------------
Enter the first of two natural numbers (which will be stored in an int type variable named A) which is no larger than 10000:
The value which was entered for A is 144.
--------------------------------
Enter the second of two natural numbers (which will be stored in an int type variable named B) which is no larger than 10000:
The value which was entered for B is 99.
--------------------------------
Computing the greatest common divisor of A and B using the Euclidean algorithm...
step_0: A = 144, B = 99, gcd(A,B) = A % B = 45.
step_1: A = 99, B = 45, gcd(A,B) = A % B = 9.
step_2: A = 45, B = 9, gcd(A,B) = A % B = 0.
The greatest common divisor of A and B is 9
--------------------------------
Enter the first of two natural numbers (which will be stored in an int type variable named A) which is no larger than 10000:
The value which was entered for A is -11.
A has been reset to 1 due to the fact that the input value for A was either less than one or else greater than 10000.
--------------------------------
Enter the second of two natural numbers (which will be stored in an int type variable named B) which is no larger than 10000:
The value which was entered for B is -11.
B has been reset to 1 due to the fact that the input value for B was either less than one or else greater than 10000.
--------------------------------
Computing the greatest common divisor of A and B using the Euclidean algorithm...
step_0: A = 1, B = 1, gcd(A,B) = A % B = 0.
The greatest common divisor of A and B is 1
--------------------------------
Enter the first of two natural numbers (which will be stored in an int type variable named A) which is no larger than 10000:
The value which was entered for A is 10001.
A has been reset to 1 due to the fact that the input value for A was either less than one or else greater than 10000.
--------------------------------
Enter the second of two natural numbers (which will be stored in an int type variable named B) which is no larger than 10000:
The value which was entered for B is 10001.
B has been reset to 1 due to the fact that the input value for B was either less than one or else greater than 10000.
--------------------------------
Computing the greatest common divisor of A and B using the Euclidean algorithm...
step_0: A = 1, B = 1, gcd(A,B) = A % B = 0.
The greatest common divisor of A and B is 1
--------------------------------
Enter the first of two natural numbers (which will be stored in an int type variable named A) which is no larger than 10000:
The value which was entered for A is 10000.
--------------------------------
Enter the second of two natural numbers (which will be stored in an int type variable named B) which is no larger than 10000:
The value which was entered for B is 10000.
--------------------------------
Computing the greatest common divisor of A and B using the Euclidean algorithm...
step_0: A = 10000, B = 10000, gcd(A,B) = A % B = 0.
The greatest common divisor of A and B is 10000
--------------------------------
Enter the first of two natural numbers (which will be stored in an int type variable named A) which is no larger than 10000:
The value which was entered for A is 0.
A has been reset to 1 due to the fact that the input value for A was either less than one or else greater than 10000.
--------------------------------
Enter the second of two natural numbers (which will be stored in an int type variable named B) which is no larger than 10000:
The value which was entered for B is 0.
B has been reset to 1 due to the fact that the input value for B was either less than one or else greater than 10000.
--------------------------------
Computing the greatest common divisor of A and B using the Euclidean algorithm...
step_0: A = 1, B = 1, gcd(A,B) = A % B = 0.
The greatest common divisor of A and B is 1
--------------------------------
Enter the first of two natural numbers (which will be stored in an int type variable named A) which is no larger than 10000:
The value which was entered for A is 1.
--------------------------------
Enter the second of two natural numbers (which will be stored in an int type variable named B) which is no larger than 10000:
The value which was entered for B is 1.
--------------------------------
Computing the greatest common divisor of A and B using the Euclidean algorithm...
step_0: A = 1, B = 1, gcd(A,B) = A % B = 0.
The greatest common divisor of A and B is 1
--------------------------------
Enter the first of two natural numbers (which will be stored in an int type variable named A) which is no larger than 10000:
The value which was entered for A is 666.
--------------------------------
Enter the second of two natural numbers (which will be stored in an int type variable named B) which is no larger than 10000:
The value which was entered for B is 303.
--------------------------------
Computing the greatest common divisor of A and B using the Euclidean algorithm...
step_0: A = 666, B = 303, gcd(A,B) = A % B = 60.
step_1: A = 303, B = 60, gcd(A,B) = A % B = 3.
step_2: A = 60, B = 3, gcd(A,B) = A % B = 0.
The greatest common divisor of A and B is 3
--------------------------------
Enter the first of two natural numbers (which will be stored in an int type variable named A) which is no larger than 10000:
The value which was entered for A is 1024.
--------------------------------
Enter the second of two natural numbers (which will be stored in an int type variable named B) which is no larger than 10000:
The value which was entered for B is 888.
--------------------------------
Computing the greatest common divisor of A and B using the Euclidean algorithm...
step_0: A = 1024, B = 888, gcd(A,B) = A % B = 136.
step_1: A = 888, B = 136, gcd(A,B) = A % B = 72.
step_2: A = 136, B = 72, gcd(A,B) = A % B = 64.
step_3: A = 72, B = 64, gcd(A,B) = A % B = 8.
step_4: A = 64, B = 8, gcd(A,B) = A % B = 0.
The greatest common divisor of A and B is 8
--------------------------------
End Of Program
--------------------------------
</pre>
<hr>
<p>This web page was last updated on 17_OCTOBER_2024. The content displayed on this web page is licensed as <a style="background:#000000;color:#ff9000" href="https://karlinaobject.wordpress.com/public_domain/" target="_blank" rel="noopener">PUBLIC_DOMAIN</a> intellectual property.</p>
<hr>