summaryrefslogtreecommitdiff
path: root/old/mgent10h.htm
blob: 6493b36d7eb22ebe8d6ba076015202d31a5fe03d (plain)
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
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
   <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
   <meta name="Author" content="Philip Jones">
   <meta name="GENERATOR" content="Mozilla/4.5 [en] (Win95; I) [Netscape]">
   <title>The Project Gutenberg Etext of The Middle Class Gentleman, by Moliere</title>
</head>

<BODY bgcolor="#ffffff">

<font face="courier, monospace">

<br>The Project Gutenberg Etext of The Middle Class Gentleman, by Moliere
by 
<br>#3 in our series by Moliere
<br>
<br>Copyright laws are changing all over the world, be sure to check
<br>the laws for your country before redistributing these files!!!
<br>
<br>Please take a look at the important information in this header.
<br>We encourage you to keep this file on your own disk, keeping an
<br>electronic path open for the next readers.
<br>
<br>Please do not remove this.
<br>
<br>This should be the first thing seen when anyone opens the book.
<br>Do not change or edit it without written permission.  The words
<br>are carefully chosen to provide users with the information they
<br>need about what they can legally do with the texts.
<br>
<br>
<br>**Welcome To The World of Free Plain Vanilla Electronic Texts**
<br>
<br>**Etexts Readable By Both Humans and By Computers, Since 1971**
<br>
<br>*These Etexts Prepared By Hundreds of Volunteers and Donations*
<br>
<br>Information on contacting Project Gutenberg to get Etexts, and
<br>further information is included below.  We need your donations.
<br>
<br>Presently, contributions are only being solicited from people in:
<br>Texas, Nevada, Idaho, Montana, Wyoming, Colorado, South Dakota,
<br>Iowa, Indiana, and Vermont. As the requirements for other states
<br>are met, additions to this list will be made and fund raising will
<br>begin in the additional states. These donations should be made to:
<br>
<br>Project Gutenberg Literary Archive Foundation
<br>PMB 113
<br>1739 University Ave.
<br>Oxford, MS 38655
<br>
<br>
<br>Title:  The Middle Class Gentleman
<br>
<br>Author:  Moliere
<br>
<br>Release Date:  December, 2001  [Etext #2992]
<br>[Yes, we are about one year ahead of schedule]
<br>
<br>Edition:  10
<br>
<br>Language:  English
<br>
<br>The Project Gutenberg Etext of The Middle Class Gentleman
by Moliere
<br>******This file should be named mgent10h.txt or mgent10h.zip******
<br>
<br>Corrected EDITIONS of our etexts get a new NUMBER, mgent11h.txt
<br>VERSIONS based on separate sources get new LETTER, mgent10ah.txt
<br>
<br>Translated and Prepared by Philip Dwight Jones.
<br>
<br>Project Gutenberg Etexts are usually created from multiple editions,
<br>all of which are in the Public Domain in the United States, unless a
<br>copyright notice is included.  Therefore, we usually do NOT keep any
<br>of these books in compliance with any particular paper edition.
<br>
<br>We are now trying to release all our books one year in advance
<br>of the official release dates, leaving time for better editing.
<br>Please be encouraged to send us error messages even years after
<br>the official publication date.
<br>
<br>Please note:  neither this list nor its contents are final till
<br>midnight of the last day of the month of any such announcement.
<br>The official release date of all Project Gutenberg Etexts is at
<br>Midnight, Central Time, of the last day of the stated month.  A
<br>preliminary version may often be posted for suggestion, comment
<br>and editing by those who wish to do so.
<br>
<br>Most people start at our sites at:
<br>http://gutenberg.net
<br>http://promo.net/pg
<br>
<br>
<br>Those of you who want to download any Etext before announcement
<br>can surf to them as follows, and just download by date; this is
<br>also a good way to get them instantly upon announcement, as the
<br>indexes our cataloguers produce obviously take a while after an
<br>announcement goes out in the Project Gutenberg Newsletter.
<br>
<br>http://www.ibiblio.org/pub/docs/books/gutenberg/etext02
<br>or
<br>ftp://ftp.ibiblio.org/pub/docs/books/gutenberg/etext02
<br>
<br>Or /etext01, 00, 99, 98, 97, 96, 95, 94, 93, 92, 92, 91 or 90
<br>
<br>Just search by the first five letters of the filename you want,
<br>as it appears in our Newsletters.
<br>
<br>
<br>Information about Project Gutenberg (one page)
<br>
<br>We produce about two million dollars for each hour we work.  The
<br>time it takes us, a rather conservative estimate, is fifty hours
<br>to get any etext selected, entered, proofread, edited, copyright
<br>searched and analyzed, the copyright letters written, etc.  This
<br>projected audience is one hundred million readers.  If our value
<br>per text is nominally estimated at one dollar then we produce $2
<br>million dollars per hour this year as we release fifty new Etext
<br>files per month, or 500 more Etexts in 2000 for a total of 3000+
<br>If they reach just 1-2% of the world's population then the total
<br>should reach over 300 billion Etexts given away by year's end.
<br>
<br>The Goal of Project Gutenberg is to Give Away One Trillion Etext
<br>Files by December 31, 2001.  [10,000 x 100,000,000 = 1 Trillion]
<br>This is ten thousand titles each to one hundred million readers,
<br>which is only about 4% of the present number of computer users.
<br>
<br>At our revised rates of production, we will reach only one-third
<br>of that goal by the end of 2001, or about 3,333 Etexts unless we
<br>manage to get some real funding.
<br>
<br>Something is needed to create a future for Project Gutenberg for
<br>the next 100 years.
<br>
<br>We need your donations more than ever!
<br>
<br>Presently, contributions are only being solicited from people in:
<br>Texas, Nevada, Idaho, Montana, Wyoming, Colorado, South Dakota,
<br>Iowa, Indiana, and Vermont. As the requirements for other states
<br>are met, additions to this list will be made and fund raising will
<br>begin in the additional states.
<br>
<br>All donations should be made to the Project Gutenberg Literary
<br>Archive Foundation and will be tax deductible to the extent
<br>permitted by law.
<br>
<br>Mail to:
<br>
<br>Project Gutenberg Literary Archive Foundation
<br>PMB 113
<br>1739 University Avenue
<br>Oxford, MS 38655  [USA]
<br>
<br>We are working with the Project Gutenberg Literary Archive
<br>Foundation to build more stable support and ensure the
<br>future of Project Gutenberg.
<br>
<br>We need your donations more than ever!
<br>
<br>You can get up to date donation information at:
<br>
<br>http://www.gutenberg.net/donation.html
<br>
<br>
<br>***
<br>
<br>You can always email directly to:
<br>
<br>Michael S. Hart &lt;hart@pobox.com&gt;
<br>
<br>hart@pobox.com forwards to hart@prairienet.org and archive.org
<br>if your mail bounces from archive.org, I will still see it, if
<br>it bounces from prairienet.org, better resend later on. . . .
<br>
<br>We would prefer to send you this information by email.
<br>
<br>
<br>Example command-line FTP session:
<br>
<br>ftp ftp.ibiblio.org
<br>login: anonymous
<br>password: your@login
<br>cd pub/docs/books/gutenberg
<br>cd etext90 through etext99 or etext00 through etext02, etc.
<br>dir [to see files]
<br>get or mget [to get files. . .set bin for zip files]
<br>GET GUTINDEX.??  [to get a year's listing of books, e.g., GUTINDEX.99]
<br>GET GUTINDEX.ALL [to get a listing of ALL books]
<br>
<br>
<br>**The Legal Small Print**
<br>
<br>
<br>(Three Pages)
<br>
<br>***START**THE SMALL PRINT!**FOR PUBLIC DOMAIN ETEXTS**START***
<br>Why is this "Small Print!" statement here?  You know: lawyers.
<br>They tell us you might sue us if there is something wrong with
<br>your copy of this etext, even if you got it for free from
<br>someone other than us, and even if what's wrong is not our
<br>fault.  So, among other things, this "Small Print!" statement
<br>disclaims most of our liability to you.  It also tells you how
<br>you can distribute copies of this etext if you want to.
<br>
<br>*BEFORE!* YOU USE OR READ THIS ETEXT
<br>By using or reading any part of this PROJECT GUTENBERG-tm
<br>etext, you indicate that you understand, agree to and accept
<br>this "Small Print!" statement.  If you do not, you can receive
<br>a refund of the money (if any) you paid for this etext by
<br>sending a request within 30 days of receiving it to the person
<br>you got it from.  If you received this etext on a physical
<br>medium (such as a disk), you must return it with your request.
<br>
<br>ABOUT PROJECT GUTENBERG-TM ETEXTS
<br>This PROJECT GUTENBERG-tm etext, like most PROJECT GUTENBERG-tm etexts,
<br>is a "public domain" work distributed by Professor Michael S. Hart
<br>through the Project Gutenberg Association (the "Project").
<br>Among other things, this means that no one owns a United States copyright
<br>on or for this work, so the Project (and you!) can copy and
<br>distribute it in the United States without permission and
<br>without paying copyright royalties.  Special rules, set forth
<br>below, apply if you wish to copy and distribute this etext
<br>under the Project's "PROJECT GUTENBERG" trademark.
<br>
<br>Please do not use the "PROJECT GUTENBERG" trademark to market
<br>any commercial products without permission.
<br>
<br>To create these etexts, the Project expends considerable
<br>efforts to identify, transcribe and proofread public domain
<br>works.  Despite these efforts, the Project's etexts and any
<br>medium they may be on may contain "Defects".  Among other
<br>things, Defects may take the form of incomplete, inaccurate or
<br>corrupt data, transcription errors, a copyright or other
<br>intellectual property infringement, a defective or damaged
<br>disk or other etext medium, a computer virus, or computer
<br>codes that damage or cannot be read by your equipment.
<br>
<br>LIMITED WARRANTY; DISCLAIMER OF DAMAGES
<br>But for the "Right of Replacement or Refund" described below,
<br>[1] the Project (and any other party you may receive this
<br>etext from as a PROJECT GUTENBERG-tm etext) disclaims all
<br>liability to you for damages, costs and expenses, including
<br>legal fees, and [2] YOU HAVE NO REMEDIES FOR NEGLIGENCE OR
<br>UNDER STRICT LIABILITY, OR FOR BREACH OF WARRANTY OR CONTRACT,
<br>INCLUDING BUT NOT LIMITED TO INDIRECT, CONSEQUENTIAL, PUNITIVE
<br>OR INCIDENTAL DAMAGES, EVEN IF YOU GIVE NOTICE OF THE
<br>POSSIBILITY OF SUCH DAMAGES.
<br>
<br>If you discover a Defect in this etext within 90 days of
<br>receiving it, you can receive a refund of the money (if any)
<br>you paid for it by sending an explanatory note within that
<br>time to the person you received it from.  If you received it
<br>on a physical medium, you must return it with your note, and
<br>such person may choose to alternatively give you a replacement
<br>copy.  If you received it electronically, such person may
<br>choose to alternatively give you a second opportunity to
<br>receive it electronically.
<br>
<br>THIS ETEXT IS OTHERWISE PROVIDED TO YOU "AS-IS".  NO OTHER
<br>WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, ARE MADE TO YOU AS
<br>TO THE ETEXT OR ANY MEDIUM IT MAY BE ON, INCLUDING BUT NOT
<br>LIMITED TO WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A
<br>PARTICULAR PURPOSE.
<br>
<br>Some states do not allow disclaimers of implied warranties or
<br>the exclusion or limitation of consequential damages, so the
<br>above disclaimers and exclusions may not apply to you, and you
<br>may have other legal rights.
<br>
<br>INDEMNITY
<br>You will indemnify and hold the Project, its directors,
<br>officers, members and agents harmless from all liability, cost
<br>and expense, including legal fees, that arise directly or
<br>indirectly from any of the following that you do or cause:
<br>[1] distribution of this etext, [2] alteration, modification,
<br>or addition to the etext, or [3] any Defect.
<br>
<br>DISTRIBUTION UNDER "PROJECT GUTENBERG-tm"
<br>You may distribute copies of this etext electronically, or by
<br>disk, book or any other medium if you either delete this
<br>"Small Print!" and all other references to Project Gutenberg,
<br>or:
<br>
<br>[1]  Only give exact copies of it.  Among other things, this
<br>     requires that you do not remove, alter or modify the
<br>     etext or this "small print!" statement.  You may however,
<br>     if you wish, distribute this etext in machine readable
<br>     binary, compressed, mark-up, or proprietary form,
<br>     including any form resulting from conversion by word
<br>     processing or hypertext software, but only so long as
<br>     *EITHER*:
<br>
<br>     [*]  The etext, when displayed, is clearly readable, and
<br>          does *not* contain characters other than those
<br>          intended by the author of the work, although tilde
<br>          (~), asterisk (*) and underline (_) characters may
<br>          be used to convey punctuation intended by the
<br>          author, and additional characters may be used to
<br>          indicate hypertext links; OR
<br>
<br>     [*]  The etext may be readily converted by the reader at
<br>          no expense into plain ASCII, EBCDIC or equivalent
<br>          form by the program that displays the etext (as is
<br>          the case, for instance, with most word processors);
<br>          OR
<br>
<br>     [*]  You provide, or agree to also provide on request at
<br>          no additional cost, fee or expense, a copy of the
<br>          etext in its original plain ASCII form (or in EBCDIC
<br>          or other equivalent proprietary form).
<br>
<br>[2]  Honor the etext refund and replacement provisions of this
<br>     "Small Print!" statement.
<br>
<br>[3]  Pay a trademark license fee to the Project of 20% of the
<br>     gross profits you derive calculated using the method you
<br>     already use to calculate your applicable taxes.  If you
<br>     don't derive profits, no royalty is due.  Royalties are
<br>     payable to "Project Gutenberg Literary Archive Foundation"
<br>     the 60 days following each date you prepare (or were
<br>     legally required to prepare) your annual (or equivalent
<br>     periodic) tax return.  Please contact us beforehand to
<br>     let us know your plans and to work out the details.
<br>
<br>WHAT IF YOU *WANT* TO SEND MONEY EVEN IF YOU DON'T HAVE TO?
<br>The Project gratefully accepts contributions of money, time,
<br>public domain etexts, and royalty free copyright licenses.
<br>If you are interested in contributing scanning equipment or
<br>software or other items, please contact Michael Hart at:
<br>hart@pobox.com
<br>
<br>*END THE SMALL PRINT! FOR PUBLIC DOMAIN ETEXTS*Ver.04.07.00*END*
<br>
<br>
<br>
<br>
</font>




<center>THE MIDDLE CLASS GENTLEMAN
<p>(Le Bourgeois Gentilhomme)
<p>by
<p>MOLI&Egrave;RE
<p>(Jean-Baptiste Poquelin, 1622-1673)
<p>Translated by
<p>Philip Dwight Jones</center>

<p>Comedy-Ballet presented at Chambord, for the entertainment of the King,
in the month of October 1670, and to the public in Paris for the first
time at the Palais-Royal Theater 23 November 1670&nbsp;
<p>The Cast&nbsp;
<p>Monsieur Jourdain, <i>bourgeois</i>.&nbsp;
<br>Madame Jourdain, <i>his wife</i>.&nbsp;
<br>Lucile, <i>their daughter</i>.
<br>Nicole, <i>maid</i>.&nbsp;
<br>Cl&eacute;onte, <i>suitor of Lucile</i>.&nbsp;
<br>Covielle, <i>Cl&eacute;onte's valet.</i>&nbsp;
<br>Dorante, <i>Count, suitor of Dorim&egrave;ne</i>.&nbsp;
<br>Dorim&egrave;ne, <i>Marchioness.</i>&nbsp;
<br>Music Master.&nbsp;
<br>Pupil of the Music Master.&nbsp;
<br>Dancing Master.&nbsp;
<br>Fencing Master.&nbsp;
<br>Master of Philosophy.&nbsp;
<br>Tailor.&nbsp;
<br>Tailor's apprentice.&nbsp;
<br>Two lackeys.&nbsp;
<br>Many male and female musicians, instrumentalists, dancers, cooks, tailor's
apprentices, and others necessary for the interludes.&nbsp;
<p><i>The scene is Monsieur Jourdain's house in Paris.</i>&nbsp;<i>&nbsp;</i>
<p>ACT ONE&nbsp;
<p>SCENE I <i>(Music Master, Dancing Master, Musicians, and Dancers)</i>
<p><i>(The play opens with a great assembly of instruments, and in the
middle of the stage is a</i> <i>pupil of the Music Master seated at a table
composing a melody</i> <i>which Monsieur Jourdain has ordered for a serenade.)</i>
<p>MUSIC MASTER: <i>(To Musicians)</i> Come, come into this room, sit there
and wait until he comes.&nbsp;
<p>DANCING MASTER: <i>(To dancers)</i> And you too, on this side.&nbsp;
<p>MUSIC MASTER: <i>(To Pupil)</i> Is it done?&nbsp;
<p>PUPIL: Yes.&nbsp;
<p>MUSIC MASTER: Let's see. . . This is good.&nbsp;
<p>DANCING MASTER: Is it something new?&nbsp;
<p>MUSIC MASTER: Yes, it's a melody for a serenade that I set him to composing
here, while waiting for our man to awake.&nbsp;
<p>DANCING MASTER: May I see it?&nbsp;
<p>MUSIC MASTER: You'll hear it, with the dialogue, when he comes. He won't
be long.&nbsp;
<p>DANCING MASTER: Our work, yours and mine, is not trivial at present.&nbsp;
<p>MUSIC MASTER: This is true. We've found here such a man as we both need.
This is a nice source of income for us -- this Monsieur Jourdain, with
the visions of nobility and gallantry that he has gotten into his head.
You and I should hope that everyone resembled him.&nbsp;
<p>DANCING MASTER: Not entirely; I could wish that he understood better
the things that we give him.&nbsp;
<p>MUSIC MASTER: It's true that he understands them poorly, but he pays
well, and that's what our art needs now more than anything else.&nbsp;
<p>DANCING MASTER: As for me, I admit, I feed a little on glory. Applause
touches me; and I hold that, in all the fine arts, it is painful to produce
for dolts, to endure the barbarous opinions of a fool about my choreography.
It is a pleasure, don't tell me otherwise, to work for people who can appreciate
the fine points of an art, who know how to give a sweet reception to the
beauties of a work and, by pleasurable approbations, gratify us for our
labor. Yes, the most agreeable recompense we can receive for the things
we do is to see them recognized and flattered by an applause that honors
us. There is nothing, in my opinion, that pays us better for all our fatigue;
and it is an exquisite delight to receive the praises of the well-informed.&nbsp;
<p>MUSIC MASTER: I agree, and I enjoy them as you do. There is surely nothing
more agreeable than the applause you speak of; but that incense does not
provide a living. Pure praises do not provide a comfortable existence;
it is necessary to add something solid, and the best way to praise is to
praise with cash-in-hand. He's a man, it's true, whose insight is very
slight, who talks nonsense about everything and applauds only for the wrong
reasons but his money makes up for his judgments. He has discernment in
his purse. His praises are in cash, and this ignorant bourgeois is worth
more to us, as you see, than the educated nobleman who introduced us here.&nbsp;
<p>DANCING MASTER: There is some truth in what you say; but I find that
you lean a little too heavily on money; and material interest is something
so base that a man of good taste should never show an attachment to it.&nbsp;
<p>MUSIC MASTER: You are ready enough to receive the money our man gives
you.&nbsp;
<p>DANCING MASTER: Assuredly; but I don't place all my happiness in it,
and I could wish that together with his fortune he had some good taste
in things.&nbsp;
<p>MUSIC MASTER: I could wish it too, that's what both of us are working
for as much as we can. But, in any case, he gives us the means to make
ourselves known in the world; and he will pay others if they will praise
him.&nbsp;
<p>DANCING MASTER: Here he comes.&nbsp;
<p>SCENE II <i>(Monsieur Jourdain, Two Lackeys, Music Master, Dancing Master,
Pupil, Musicians, and Dancers)</i>
<p>MONSIEUR JOURDAIN: Well gentlemen? What's this? Are you going to show
me your little skit?&nbsp;
<p>DANCING MASTER: How? What little skit?&nbsp;
<p>MONSIEUR JOURDAIN: Well, the. . . What-do-you-call it? Your prologue
or dialogue of songs and dances.&nbsp;
<p>DANCING MASTER: Ha, ha!&nbsp;
<p>MUSIC MASTER: You find us ready for you.&nbsp;
<p>MONSIEUR JOURDAIN: I kept you waiting a little, but it's because I'm
having myself dressed today like the people of quality, and my tailor sent
me some silk stockings that I thought I would never get on.&nbsp;
<p>MUSIC MASTER: We are here only to wait upon your leisure.&nbsp;
<p>MONSIEUR JOURDAIN: I want you both to stay until they have brought me
my suit, so that you may see me.&nbsp;
<p>DANCING MASTER: Whatever you would like.&nbsp;
<p>MONSIEUR JOURDAIN: You will see me fitted out properly, from head to
foot.&nbsp;
<p>MUSIC MASTER: We have no doubt of it.&nbsp;
<p>MONSIEUR JOURDAIN: I had this robe made for me.&nbsp;
<p>DANCING MASTER: It's very attractive.&nbsp;
<p>MONSIEUR JOURDAIN: My tailor told me the people of quality dress like
this in the mornings.&nbsp;
<p>MUSIC MASTER: It's marvelously becoming.&nbsp;
<p>MONSIEUR JOURDAIN: Hey lackeys! My two lackeys!&nbsp;
<p>FIRST LACKEY; What do you wish, Sir?&nbsp;
<p>MONSIEUR JOURDAIN: Nothing. I just wanted to see if you were paying
attention. <i>(To the two masters)</i> What say you of my liveries?&nbsp;
<p>DANCING MASTER: They're magnificent.&nbsp;
<p>MONSIEUR JOURDAIN: <i>(Half opening his gown, showing a pair</i> <i>of
tight red velvet breeches, and a green velvet vest, that he</i> <i>is wearing)
</i>Here again is a sort of lounging dress to perform my morning exercises
in.&nbsp;
<p>MUSIC MASTER: It is elegant.&nbsp;
<p>MONSIEUR JOURDAIN: Lackey!&nbsp;
<p>FIRST LACKEY: Sir?&nbsp;
<p>MONSIEUR JOURDAIN: The other lackey!&nbsp;
<p>SECOND LACKEY: Sir?&nbsp;
<p>MONSIEUR JOURDAIN: Hold my robe.&nbsp;
<p><i>(To the Masters)</i> Do you think I look good?&nbsp;
<p>DANCING MASTER: Very well. No one could look better.&nbsp;
<p>MONSIEUR JOURDAIN: Now let's have a look at your little show.&nbsp;
<p>MUSIC MASTER: I would like very much for you to listen to a melody he
<i>(indicating his student)</i> has just composed for the serenade that
you ordered from me. He's one of my pupils who has an admirable talent
for these kinds of things.&nbsp;
<p>MONSIEUR JOURDAIN: Yes, but you should not have had that done by a pupil;
you yourself were none too good for that piece of work.&nbsp;
<p>MUSIC MASTER: You must not let the name of pupil fool you, sir. Pupils
of this sort know as much as the greatest masters, and the melody is as
fine as could be made. Just listen.&nbsp;
<p>MONSIEUR JOURDAIN: <i>(To Lackeys)</i> Give me my robe so I can listen
better . . . Wait, I believe I would be better without a robe. . . No,
give it back, that will be better.&nbsp;
<p>MUSICIAN: <i>(Singing)</i> <i>I languish night and day, my suffering
is extreme</i> <i>Since to your control your lovely eyes subjected me;</i>
<i>If you thus treat, fair Iris, those you love,</i> <i>Alas, how would
you treat an enemy?</i>
<p>MONSIEUR JOURDAIN: This song seems to me a little mournful, it lulls
to sleep, and I would like it if you could liven it up a little, here and
there.&nbsp;
<p>MUSIC MASTER: It is necessary, Sir, that the tune be suited to the words.&nbsp;
<p>MONSIEUR JOURDAIN: Someone taught me a perfectly pretty one some time
ago. Listen . . . Now . . . how does it go?&nbsp;
<p>DANCING MASTER: By my faith, I don't know.&nbsp;
<p>MONSIEUR JOURDAIN: There are sheep in it.&nbsp;
<p>DANCING MASTER: Sheep?&nbsp;
<p>MONSIEUR JOURDAIN: Yes. Ah! <i>(He sings)</i>
<p><i>I thought my Jeanneton</i> <i>As beautiful as sweet;</i> <i>I thought
my Janneton</i> <i>Far sweeter than a sheep.</i> <i>Alas! Alas! She is
a hundred times,</i> <i>A thousand times, more cruel</i> <i>Than tigers
in the woods!</i>
<p>Isn't it pretty?&nbsp;
<p>MUSIC MASTER: The prettiest in the world.&nbsp;
<p>DANCING MASTER: And you sing it well.&nbsp;
<p>MONSIEUR JOURDAIN: It's without having learned music.&nbsp;
<p>MUSIC MASTER: You ought to learn it, Sir, as you are learning dancing.
They are two arts which have a close connection.&nbsp;
<p>DANCING MASTER: And which open the mind of a man to fine things.&nbsp;
<p>MONSIEUR JOURDAIN: And do people of quality learn music, too?&nbsp;
<p>MUSIC MASTER: Yes sir.&nbsp;
<p>MONSIEUR JOURDAIN: I'll learn it then. But I don't know when I can find
time; for besides the Fencing Master who's teaching me, I have also engaged
a master of philosophy who is to begin this morning.&nbsp;
<p>MUSIC MASTER: Philosophy is something; but music, sir, music . . .&nbsp;
<p>DANCING MASTER: Music and dancing, music and dancing, that's all that's
necessary.&nbsp;
<p>MUSIC MASTER: There's nothing so useful in a State as music.&nbsp;
<p>DANCING MASTER: There's nothing so necessary to men as dancing.&nbsp;
<p>MUSIC MASTER: Without music, a State cannot subsist.&nbsp;
<p>DANCING MASTER: Without the dance, a man can do nothing.&nbsp;
<p>MUSIC MASTER: All the disorders, all the wars one sees in the world
happen only from not learning music.&nbsp;
<p>DANCING MASTER: All the misfortunes of mankind, all the dreadful disasters
that fill the history books, the blunders of politicians and the faults
of omission of great commanders, all this comes from not knowing how to
dance.&nbsp;
<p>MONSIEUR JOURDAIN: How is that?&nbsp;
<p>MUSIC MASTER: Does not war result from a lack of agreement between men?&nbsp;
<p>MONSIEUR JOURDAIN: That is true.&nbsp;
<p>MUSIC MASTER: And if all men learned music, wouldn't that be a means
of bringing about harmony and of seeing universal peace in the world?&nbsp;
<p>MONSIEUR JOURDAIN: You are right.&nbsp;
<p>DANCING MASTER: When a man has committed a mistake in his conduct, in
family affairs, or in affairs of government of a state, or in the command
of an army, do we not always say, "He took a bad step in such and such
an affair?"&nbsp;
<p>MONSIEUR JOURDAIN: Yes, that's said.&nbsp;
<p>DANCING MASTER: And can taking a bad step result from anything but not
knowing how to dance?&nbsp;
<p>MONSIEUR JOURDAIN: It's true, you are both right.&nbsp;
<p>DANCING MASTER: It makes you see the excellence and usefulness of music
and the dance.&nbsp;
<p>MONSIEUR JOURDAIN: I understand that, now.&nbsp;
<p>MUSIC MASTER: Do you wish to see our pieces?&nbsp;
<p>MONSIEUR JOURDAIN: Yes.&nbsp;
<p>MUSIC MASTER: I have already told you that this is a little attempt
I have made to show the different passions that music can express.&nbsp;
<p>MONSIEUR JOURDAIN: Very good.&nbsp;
<p>MUSIC MASTER <i>(To musicians)</i> Here, come forward<i>. (To Monsieur</i>
<i>Jourdain)</i> You must imagine that they are dressed as shepherds.&nbsp;
<p>MONSIEUR JOURDAIN: Why always as shepherds? You see nothing but that
everywhere.&nbsp;
<p>MUSIC MASTER: When we have characters that are to speak in music, it's
necessary, for believability, to make them pastoral. Singing has always
been assigned to shepherds; and it is scarcely natural dialogue for princes
or merchants to sing their passions.&nbsp;
<p>MONSIEUR JOURDAIN: Alright, alright. Let's see.&nbsp;
<p>DIALOGUE IN MUSIC: <i>(A Woman and Two Men)</i>
<p>ALL THREE: <i>A heart, under the domination of love,</i> <i>Is always
with a thousand cares oppressed.</i> <i>It is said that we gladly languish,
gladly sigh;</i> <i>But, despite what can be said,</i> <i>There is nothing
so sweet as our liberty!</i>
<p>FIRST MAN: <i>There is nothing so sweet as the loving fires</i> <i>That
make two hearts beat as one.</i> <i>One cannot live without amorous desires;</i>
<i>Take love from life, you take away the pleasures.</i>
<p>SECOND MAN: <i>It would be sweet to submit to love's rule,</i> <i>If
one could find faithful love,</i> <i>But, alas! oh cruel rule!</i> <i>No
faithful shepherdess is to be seen,</i> <i>And that inconstant sex, much
too unworthy,</i> <i>Must renounce love eternally.</i>
<p>FIRST MAN: <i>Pleasing ardor!</i>
<p>WOMAN: <i>Happy liberty!</i>
<p>SECOND MAN: <i>Deceitful woman!</i>
<p>FIRST MAN: <i>How precious you are to me!</i>
<p>WOMAN: <i>How you please my heart!</i>
<p>SECOND MAN: <i>How horrible you are to me!</i>
<p>FIRST MAN: <i>Ah, leave, for love, that mortal hate!</i>
<p>WOMAN: <i>We can, we can show you</i> <i>a faithful shepherdess!</i>
<p>SECOND MAN: <i>Alas! Where to find her?</i>
<p>WOMAN: <i>In order to defend our reputation,</i> <i>I want to offer
you my heart!</i>
<p>FIRST MAN: <i>But, shepherdess, can I believe</i> <i>That it will not
be deceitful?</i>
<p>WOMAN: <i>We'll see through experience,</i> <i>Who of the two loves
best.</i>
<p>SECOND MAN: <i>Who lacks constancy,</i> <i>May the gods destroy!</i>
<p>ALL THREE: <i>With ardors so beautiful</i> <i>Let us be inflamed!</i>
<i>Ah, how sweet it is to love,</i> <i>When two hearts are faithful!</i>
<p>MONSIEUR JOURDAIN: Is that all?&nbsp;
<p>MUSIC MASTER: Yes.&nbsp;
<p>MONSIEUR JOURDAIN: I find it well-done, and there are some pretty enough
sayings in it.&nbsp;
<p>DANCING MASTER: Here, for my presentation, is a little display of the
loveliest movements and the most beautiful attitudes with which a dance
can possibly be varied.&nbsp;
<p>MONSIEUR JOURDAIN: Are these shepherds too?&nbsp;
<p>DANCING MASTER: They're whatever you please. Let's go!&nbsp;
<p><i>(Four dancers execute all the different movements and all the kinds
of steps that the Dancing Master</i> <i>commands; and this dance makes
the First Interlude.)</i>&nbsp;<i>&nbsp;</i>
<p>ACT TWO&nbsp;
<p>SCENE I <i>(Monsieur Jourdain, Music Master, Dancing Master, Lackeys)</i>
<p>MONSIEUR JOURDAIN: That's not all that bad, and those people there hop
around well.&nbsp;
<p>MUSIC MASTER: When the dance is combined with the music, it will have
even better effect, and you will see something quite good in the little
ballet we have prepared for you.&nbsp;
<p>MONSIEUR JOURDAIN: That's for later, when the person I ordered all this
for is to do me the honor of coming here to dine.&nbsp;
<p>DANCING MASTER: Everything is ready.&nbsp;
<p>MUSIC MASTER: However, sir, this is not enough. A person like you, who
lives magnificently, and who are inclined towards fine things, should have
a concert of music here every Wednesday or every Thursday.&nbsp;
<p>MONSIEUR JOURDAIN: Is that what people of quality do?&nbsp;
<p>MUSIC MASTER: Yes, Sir.&nbsp;
<p>MONSIEUR JOURDAIN: Then I'll have them. Will it be fine?&nbsp;
<p>MUSIC MASTER: Without doubt. You must have three voices-- a tenor, a
soprano, and a bass, who will be accompanied by a bass-viol, a theorbo,
and a clavecin for the chords, with two violins to play the ritournelles.&nbsp;
<p>MONSIEUR JOURDAIN: You must also add a trumpet marine. The trumpet marine
is an instrument that pleases me and it's harmonious.&nbsp;
<p>MUSIC MASTER: Leave it to us to manage things.&nbsp;
<p>MONSIEUR JOURDAIN: At least, don't forget to send the musicians to sing
at table.&nbsp;
<p>MUSIC MASTER: You will have everything you should have.&nbsp;
<p>MONSIEUR JOURDAIN: But above all, let the ballet be fine.&nbsp;
<p>MUSIC MASTER: You will be pleased with it, and, among other things,
with certain minuets you will find in it.&nbsp;
<p>MONSIEUR JOURDAIN: Ah! Minuets are my dance, and I would like you to
see me dance them. Come, my Dancing Master.&nbsp;
<p>DANCING MASTER: A hat, sir, if you please. La, la, la, la. La, la, la,
la. In cadence please. La, la, la, la. Your right leg. La, la, la, la.
Don't move your shoulders so. La, la, la, la. Your arms are wrong. La,
la, la, la. Raise your head. Turn the toe out. La, la, la, la. Straighten
your body up.&nbsp;
<p>MONSIEUR JOURDAIN: How was that? <i>(Breathlessly)</i>
<p>MUSIC MASTER: The best.&nbsp;
<p>MONSIEUR JOURDAIN: By the way, teach me how to bow to salute a marchioness;
I shall need to know soon.&nbsp;
<p>DANCING MASTER: How you must bow to salute a marchioness?&nbsp;
<p>MONSIEUR JOURDAIN: Yes, a marchioness named Dorim&egrave;ne.&nbsp;
<p>DANCING MASTER: Give me your hand.&nbsp;
<p>MONSIEUR JOURDAIN: No. You only have to do it, I'll remember it well.&nbsp;
<p>DANCING MASTER: If you want to salute her with a great deal of respect,
you must first bow and step back, then bow three times as you walk towards
her, and at the last one bow down to her knees.&nbsp;
<p>MONSIEUR JOURDAIN: <i>(After the Dancing Master has illustrated)</i>
Do it some. Good!&nbsp;
<p>LACKEY: Sir, your Fencing Master is here.&nbsp;
<p>MONSIEUR JOURDAIN: Tell him to come in here for my lesson. I want you
to see me perform.&nbsp;
<p>SCENE II <i>(Fencing Master, Music Master, Dancing Master, Monsier Jourdain,
a Lackey)</i>
<p>FENCING MASTER: <i>(After giving a foil to Monsieur Jourdain)</i> Come,
sir, the salute. Your body straight. A little inclined upon the left thigh.
Your legs not so wide apart. Your feet both in a line. Your wrist opposite
your hip. The point of your sword even with your shoulder. The arm not
so much extended. The left hand at the level of the eye. The left shoulder
more squared. The head up. The expression bold. Advance. The body steady.
Beat carte, and thrust. One, two. Recover. Again, with the foot firm. Leap
back. When you make a pass, Sir, you must first disengage, and your body
must be well turned. One, two. Come, beat tierce and thrust. Advance. Stop
there. One, two. Recover. Repeat. Leap back. On guard, Sir, on guard. <i>(The
fencing master touches him two or three times with</i> <i>the foil while
saying, "On guard." )</i>
<p>MONSIEUR JOURDAIN: How was that? <i>(Breathlessly)</i>
<p>MUSIC MASTER: You did marvelously!&nbsp;
<p>FENCING MASTER: As I have told you, the entire secret of fencing lies
in two things: to give and not to receive; and as I demonstrated to you
the other day, it is impossible for you to receive, if you know how to
turn your opponent's sword from the line of your body. This depends solely
on a slight movement of the wrist, either inward or outward.&nbsp;
<p>MONSIEUR JOURDAIN: In this way then, a man, without courage, is sure
to kill his man and not be killed himself?&nbsp;
<p>FENCING MASTER: Without doubt. Didn't you see the demonstration?&nbsp;
<p>MONSIEUR JOURDAIN: Yes.&nbsp;
<p>FENCING MASTER: And thus you have seen how men like me should be considered
by the State, and how the science of fencing is more important than all
the other useless sciences, such as dancing, music, ...&nbsp;
<p>DANCING MASTER: Careful there, Monsieur swordsman! Speak of the dance
only with respect.&nbsp;
<p>MUSIC MASTER: I beg you to speak better of the excellence of music.&nbsp;
<p>FENCING MASTER: You are amusing fellows, to want to compare your sciences
with mine!&nbsp;
<p>MUSIC MASTER: See the self-importance of the man!&nbsp;
<p>FENCING MASTER: My little Dancing Master, I'll make you dance as you
ought. And you, my little musician, I'll make you sing in a pretty way.&nbsp;
<p>DANCING MASTER: Monsieur Clanger-of-iron, I'll teach you your trade.&nbsp;
<p>MONSIEUR JOURDAIN: <i>(To the Dancing Master)</i> Are you crazy to quarrel
with him, who knows tierce and quarte, and who can kill a man by demonstration?&nbsp;
<p>DANCING MASTER: I disdain his demonstrations, and his tierce, and his
quarte.&nbsp;
<p>MONSIEUR JOURDAIN: Careful, I tell you.&nbsp;
<p>FENCING MASTER: What? You little impertinent!&nbsp;
<p>MONSIEUR JOURDAIN: Oh! My Fencing Master.&nbsp;
<p>DANCING MASTER: What? You big workhorse!&nbsp;
<p>MONSIEUR JOURDAIN: Oh! My Dancing Master.&nbsp;
<p>FENCING MASTER: If I throw myself on you ...&nbsp;
<p>MONSIEUR JOURDAIN: Careful.&nbsp;
<p>DANCING MASTER: If I get my hands on you ...&nbsp;
<p>MONSIEUR JOURDAIN: Be nice!&nbsp;
<p>FENCING MASTER: I'll go over you with a curry-comb, in such a way...&nbsp;
<p>MONSIEUR JOURDAIN: Mercy!&nbsp;
<p>DANCING MASTER: I'll give you a beating such as ...&nbsp;
<p>MONSIEUR JOURDAIN: I beg of you!&nbsp;
<p>MUSIC MASTER: Let us teach him a little how to talk!&nbsp;
<p>MONSIEUR JOURDAIN: Oh Lord! Stop.&nbsp;
<p>SCENE III <i>(Philosophy Master, Music Master, Dancing Master, Fencing
Master, Monsieur Jourdain, Lackeys)</i>
<p>MONSIEUR JOURDAIN: Aha! Monsieur Philosopher, you come just in time
with your philosophy. Come, make a little peace among these people.&nbsp;
<p>PHILOSOPHY MASTER: What's happening? What's the matter, gentlemen.&nbsp;
<p>MONSIEUR JOURDAIN: They have got into a rage over the superiority of
their professions to the point of injurious words and of wanting to come
to blows.&nbsp;
<p>PHILOSOPHY MASTER: What! Gentlemen, must you act this way? Haven't you
read the learned treatise that Seneca composed on anger? Is there anything
more base and more shameful than this passion, which turns a man into a
savage beast? And shouldn't reason be the mistress of all our activities?&nbsp;
<p>DANCING MASTER: Well! Sir, he has just abused both of us by, despising
the dance, which I practice, and music, which is his profession.&nbsp;
<p>PHILOSOPHY MASTER: A wise man is above all the insults that can be spoken
to him; and the grand reply one should make to such outrages is moderation
and patience.&nbsp;
<p>FENCING MASTER: They both had the audacity of trying to compare their
professions with mine.&nbsp;
<p>PHILOSOPHY MASTER: Should that disturb you? Men should not dispute amongst
themselves about vainglory and rank; that which perfectly distinguishes
one from the other is wisdom and virtue.&nbsp;
<p>DANCING MASTER: I insist to him that dance is a science to which one
cannot do enough honor.&nbsp;
<p>MUSIC MASTER: And I, that music is something that all the ages have
revered.&nbsp;
<p>FENCING MASTER: And I insist to them that the science of fencing is
the finest and the most necessary of all sciences.&nbsp;
<p>PHILOSOPHY MASTER: And where then will philosophy be? I find you all
very impertinent to speak with this arrogance in front of me, and impudently
to give the name of science to things that one should not even honor with
the name of art, and that cannot be classified except under the name of
miserable gladiator, singer, and buffoon!&nbsp;
<p>FENCING MASTER: Get out, you dog of a philosopher!&nbsp;
<p>MUSIC MASTER: Get out, you worthless pedant!&nbsp;
<p>DANCING MASTER: Get out, you ill-mannered cur!&nbsp;
<p>PHILOSOPHY MASTER: What! Rascals that you are ... <i>(The philosopher
flings himself at them, and all three go out fighting)</i>.&nbsp;
<p>MONSIEUR JOURDAIN: Monsieur Philosopher!&nbsp;
<p>PHILOSOPHY MASTER: Rogues! Scoundrels! Insolent dogs!&nbsp;
<p>MONSIEUR JOURDAIN: Monsieur Philosopher!&nbsp;
<p>FENCING MASTER: A pox on the beast!&nbsp;
<p>MONSIEUR JOURDAIN: Gentlemen!&nbsp;
<p>PHILOSOPHY MASTER: Impudent rogues!&nbsp;
<p>MONSIEUR JOURDAIN: Monsieur Philosopher!&nbsp;
<p>DANCING MASTER: The devil take the jackass!&nbsp;
<p>MONSIEUR JOURDAIN: Gentlemen!&nbsp;
<p>PHILOSOPHY MASTER: Villains!&nbsp;
<p>MONSIEUR JOURDAIN: Monsieur Philosopher!&nbsp;
<p>MUSIC MASTER: To the devil with the impertinent fellow!&nbsp;
<p>MONSIEUR JOURDAIN: Gentlemen!&nbsp;
<p>PHILOSOPHY MASTER: Rascals! Beggars! Traitors! Impostors! <i>(They leave</i>).&nbsp;
<p>MONSIEUR JOURDAIN: Monsieur Philosopher, Gentlemen! Monsieur Philosopher!
Gentlemen! Monsieur Philosopher! Oh! Fight as much as you like. I don't
know what to do, and I'll not spoil my robe to separate you. I would be
a fool to go among them and receive some damaging blow.&nbsp;
<p>ACT TWO&nbsp;
<p>SCENE IV <i>(Philosophy Master, Monsieur Jourdain)</i>
<p>PHILOSOPHY MASTER: <i>(Straightening the collar that indicates he is
a</i> <i>Philosopher)</i> Now to our lesson.&nbsp;
<p>MONSIEUR JOURDAIN: Oh! Sir, I am distressed by the blows they gave you.&nbsp;
<p>PHILOSOPHY MASTER: It's nothing. A philosopher knows how to take these
things and I'll compose a satire against them, in the style of Juvenal,
which will fix them nicely. Let it be. What would you like to learn?&nbsp;
<p>MONSIEUR JOURDAIN: Everything I can, for I have every desire in the
world to be educated, and I'm furious that my father and mother did not
make me study all the sciences when I was young.&nbsp;
<p>PHILOSOPHY MASTER: This is a reasonable sentiment. Nam sine doctrina
vita est quasi mortis imago. You understand that, and you doubtless know
Latin?&nbsp;
<p>MONSIEUR JOURDAIN: Yes, but act as if I did not know it. Tell me what
it says.&nbsp;
<p>PHILOSOPHY MASTER: It says that without science life is almost an image
of death.&nbsp;
<p>MONSIEUR JOURDAIN: That Latin is right.&nbsp;
<p>PHILOSOPHY MASTER: Don't you know some principles, some basics of the
sciences?&nbsp;
<p>MONSIEUR JOURDAIN: Oh yes! I can read and write.&nbsp;
<p>PHILOSOPHY MASTER: Where would it please you for us to begin? Would
you like me to teach you logic?&nbsp;
<p>MONSIEUR JOURDAIN: What is this logic?&nbsp;
<p>PHILOSOPHY MASTER: It is that which teaches the three operations of
the mind.&nbsp;
<p>MONSIEUR JOURDAIN: What are these three operations of the mind?&nbsp;
<p>PHILOSOPHY MASTER: The first, the second, and the third. The first is
to conceive well by means of the universals; the second is to judge well
by means of the categories; and the third is to draw well a conclusion
by means of figures. Barbara, Celarent, Darii, Ferio, Baralipton, etc.&nbsp;
<p>MONSIEUR JOURDAIN: Those words are too ugly. This logic doesn't suit
me at all. Let's learn something else that's prettier.&nbsp;
<p>PHILOSOPHY MASTER: Would you like to learn morality?&nbsp;
<p>MONSIEUR JOURDAIN: Morality?&nbsp;
<p>PHILOSOPHY MASTER: Yes.&nbsp;
<p>MONSIEUR JOURDAIN: What does it say, this morality?&nbsp;
<p>PHILOSOPHY MASTER: It treats of happiness, teaches men to moderate their
passions, and ...&nbsp;
<p>MONSIEUR JOURDAIN: No, let's leave that. I'm as choleric as all the
devils and there's no morality that sticks, I want to be as full of anger
as I want whenever I like.&nbsp;
<p>PHILOSOPHY MASTER: Would you like to learn physics?&nbsp;
<p>MONSIEUR JOURDAIN: What's it about, this physics?&nbsp;
<p>PHILOSOPHY MASTER: Physics explains the principles of natural things
and the properties of the material world; it discourses on the nature of
the elements, of metals, minerals, of stones, of plants and animals, and
teaches the causes of all the meteors, the rainbow, the will o' the wisps,
the comets, lightning, thunder, thunderbolts, rain, snow, hail, winds,
and whirlwinds.&nbsp;
<p>MONSIEUR JOURDAIN: There's too much commotion in it, too much confusion.&nbsp;
<p>PHILOSOPHY MASTER: Then what do you want me to teach you?&nbsp;
<p>MONSIEUR JOURDAIN: Teach me how to spell.&nbsp;
<p>PHILOSOPHY MASTER: Very gladly.&nbsp;
<p>MONSIEUR JOURDAIN: Afterwards, you may teach me the almanack, to know
when there is a moon and when not.&nbsp;
<p>PHILOSOPHY MASTER: So be it. Following your thought and treating this
matter as a philosopher, it is necessary to begin according to the order
of things, by an exact knowledge of the nature of letters and the different
ways of pronouncing them all. And thereupon I must tell you letters are
divided into vowels, called vowels because they express the voice; and
into consonants because they sound with the vowels and only mark the diverse
articulations of the voice. There are five vowels or voices: A, E, I, O,
U.&nbsp;
<p>MONSIEUR JOURDAIN: I understand all that.&nbsp;
<p>PHILOSOPHY MASTER: The vowel A is formed by opening the mouth widely
: A. Its vowels are to be given the sounds used in vocalizing: Ah-aye-ee-o-ou.&nbsp;
<p>MONSIEUR JOURDAIN: A, A. Yes.&nbsp;
<p>PHILOSOPHY MASTER: The vowel E is formed by approaching the lower jaw
to the upper: A, E.&nbsp;
<p>MONSIEUR JOURDAIN: A, E; A, E. By my faith, yes. Ah! How fine!&nbsp;
<p>PHILOSOPHY MASTER: And the vowel I, by bringing the jaws still nearer
each other and stretching the two corners of the mouth towards the ears:
A, E, I.&nbsp;
<p>MONSIEUR JOURDAIN: A, E, I. I. I. I. That's true. Long live science!&nbsp;
<p>PHILOSOPHY MASTER: The vowel O is formed by opening the jaws and drawing
together the two corners of the lips, upper and lower: O.&nbsp;
<p>MONSIEUR JOURDAIN: O, O. There's nothing truer. A, E, I, O,I O.. That's
admirable! I, O, I, O.&nbsp;
<p>PHILOSOPHY MASTER: The opening of the mouth happens to make a little
circle which represents an O.&nbsp;
<p>MONSIEUR JOURDAIN: O, O, O. You are right! O. Ah! What a fine thing
it is to know something!&nbsp;
<p>PHILOSOPHY MASTER: The vowel U is formed by bringing the teeth nearly
together without completely joining them, and thrusting the two lips outward,
also bringing them nearly together without completely joining them: U.&nbsp;
<p>MONSIEUR JOURDAIN: U, U. There's nothing truer. U.&nbsp;
<p>PHILOSOPHY MASTER: Your two lips thrust out as if you were making a
face, whence it results that if you want to make a face at someone and
mock him, you have only to say to him "U."&nbsp;
<p>MONSIEUR JOURDAIN: U, U. That's true. Ah! Why didn't I study sooner
in order to know all that!&nbsp;
<p>PHILOSOPHY MASTER: Tomorrow we shall look at the other letters, which
are the consonants.&nbsp;
<p>MONSIEUR JOURDAIN: Are there things as curious about them as about these?&nbsp;
<p>PHILOSOPHY MASTER: Without a doubt. The consonant D, for example, is
pronounced by clapping the tongue above the upper teeth: D.&nbsp;
<p>MONSIEUR JOURDAIN: D, D, Yes. Ah! What fine things! Fine things!&nbsp;
<p>PHILOSOPHY MASTER: The F, by pressing the upper teeth against the lower
lip: F.&nbsp;
<p>MONSIEUR JOURDAIN: F, F. That's the truth. Ah! My father and my mother,
how I wish you ill!&nbsp;
<p>PHILOSOPHY MASTER: And the R, by carrying the tip of the tongue to the
top of the palate, so that being grazed by the air that comes out with
force, it yields to it and comes back always to the same place, making
a kind of trill: R. AR.&nbsp;
<p>MONSIEUR JOURDAIN: R, R, AR. R, R, R, R, R, RA. That's true. Ah! What
a clever man you are! And how I have lost time! R, R, R, AR.&nbsp;
<p>PHILOSOPHY MASTER: I'll explain to you all these strange things to their
very depths.&nbsp;
<p>MONSIEUR JOURDAIN: Please do. But now, I must confide in you. I'm in
love with a lady of great quality, and I wish that you would help me write
something to her in a little note that I will let fall at her feet.&nbsp;
<p>PHILOSOPHY MASTER: Very well.&nbsp;
<p>MONSIEUR JOURDAIN: That will be gallant, yes?&nbsp;
<p>PHILOSOPHY MASTER: Without doubt. Is it verse that you wish to write
her?&nbsp;
<p>MONSIEUR JOURDAIN: No, no. No verse.&nbsp;
<p>PHILOSOPHY MASTER: Do you want only prose?&nbsp;
<p>MONSIEUR JOURDAIN: No, I don't want either prose or verse.&nbsp;
<p>PHILOSOPHY MASTER: It must be one or the other.&nbsp;
<p>MONSIEUR JOURDAIN: Why?&nbsp;
<p>PHILOSOPHY MASTER: Because, sir, there is no other way to express oneself
than with prose or verse.&nbsp;
<p>MONSIEUR JOURDAIN: There is nothing but prose or verse?&nbsp;
<p>PHILOSOPHY MASTER: No, sir, everything that is not prose is verse, and
everything that is not verse is prose.&nbsp;
<p>MONSIEUR JOURDAIN: And when one speaks, what is that then?&nbsp;
<p>PHILOSOPHY MASTER: Prose.&nbsp;
<p>MONSIEUR JOURDAIN: What! When I say, "Nicole, bring me my slippers,
and give me my nightcap," that's prose?&nbsp;
<p>PHILOSOPHY MASTER: Yes, Sir.&nbsp;
<p>MONSIEUR JOURDAIN: By my faith! For more than forty years I have been
speaking prose without knowing anything about it, and I am much obliged
to you for having taught me that. I would like then to put into a note
to her: "Beautiful marchioness, your lovely eyes make me die of love,"
but I want that put in a gallant manner and be nicely turned.&nbsp;
<p>PHILOSOPHY MASTER: Put it that the fires of her eyes reduce your heart
to cinders; that you suffer night and day for her the torments of a . .
.&nbsp;
<p>MONSIEUR JOURDAIN: No, no, no. I want none of that; I only want you
to say "Beautiful marchioness, your lovely eyes make me die of love."&nbsp;
<p>PHILOSOPHY MASTER: The thing requires a little lengthening.&nbsp;
<p>MONSIEUR JOURDAIN: No, I tell you, I want only those words in the note,
but turned stylishly, well arranged, as is necessary. Please tell me, just
to see, the diverse ways they could be put.&nbsp;
<p>PHILOSOPHY MASTER: One could put them first of all as you said them:
"Beautiful marchioness, your lovely eyes make me die of love." Or else:
"Of love to die make me, beautiful marchioness, your beautiful eyes." Or
else: "Your lovely eyes, of love make me, beautiful marchioness, die."
Or else: "Die, your lovely eyes, beautiful marchioness, of love make me."
Or else: "Me make your lovely eyes die, beautiful marchioness, of love."&nbsp;
<p>MONSIEUR JOURDAIN: But, of all those ways, which is the best?&nbsp;
<p>PHILOSOPHY MASTER: The way you said it: "Beautiful marchioness, your
lovely eyes make me die of love."&nbsp;
<p>MONSIEUR JOURDAIN: I never studied, and yet I made the whole thing up
at the first try. I thank you with all my heart, and I ask you to come
tomorrow early.&nbsp;
<p>PHILOSOPHY MASTER: I shall not fail to do so. <i>(He leaves).</i>
<p>MONSIEUR JOURDAIN: What? Hasn't my suit come yet?&nbsp;
<p>THE LACKEY: No, Sir.&nbsp;
<p>MONSIEUR JOURDAIN: That cursed tailor makes me wait all day when I have
so much to do! I'm enraged. May the quartan fever shake that tormentor
of a tailor! To the devil with the tailor! May the plague choke the tailor!
If I had him here now, that detestable tailor, that dog of a tailor, that
traitor of a tailor, I . . .&nbsp;
<p>SCENE V <i>(Master Tailor, Apprentice Tailor carrying suit, Monsieur
Jourdain, Lackeys)</i>
<p>MONSIEUR JOURDAIN: Ah! You're here! I was getting into a rage against
you.&nbsp;
<p>MASTER TAILOR: I could not come sooner, and I put twenty men to work
on your suit.&nbsp;
<p>MONSIEUR JOURDAIN: You sent me some silk hose so small that I had all
the difficulty in the world putting them on, and already there are two
broken stitches.&nbsp;
<p>MASTER TAILOR: They get bigger, too much so.&nbsp;
<p>MONSIEUR JOURDAIN: Yes, if I always break the stitches. You also had
made for me a pair of shoes that pinch furiously.&nbsp;
<p>MASTER TAILOR: Not at all, sir.&nbsp;
<p>MONSIEUR JOURDAIN: How, not at all!&nbsp;
<p>MASTER TAILOR: No, they don't pinch you at all.&nbsp;
<p>MONSIEUR JOURDAIN: I tell you, they pinch me.&nbsp;
<p>MASTER TAILOR: You imagine that.&nbsp;
<p>MONSIEUR JOURDAIN: I imagine it because I feel it. That's a good reason
for you!&nbsp;
<p>MASTER TAILOR: Wait, here is the finest court-suit, and the best matched.
It's a masterpiece to have invented a serious suit that is not black. And
I give six attempts to the best tailors to equal it.&nbsp;
<p>MONSIEUR JOURDAIN: What's this? You've put the flowers upside down.&nbsp;
<p>MASTER TAILOR: You didn't tell me you wanted them right side up.&nbsp;
<p>MONSIEUR JOURDAIN: Did I have to tell you that?&nbsp;
<p>MASTER TAILOR: Yes, surely. All the people of quality wear them this
way.&nbsp;
<p>MONSIEUR JOURDAIN: The people of quality wear the flowers upside down?&nbsp;
<p>MASTER TAILOR: Yes, Sir.&nbsp;
<p>MONSIEUR JOURDAIN: Oh! It's alright then.&nbsp;
<p>MASTER TAILOR: If you like, I'll put them right side up.&nbsp;
<p>MONSIEUR JOURDAIN: No, no.&nbsp;
<p>MASTER TAILOR: You have only to say so.&nbsp;
<p>MONSIEUR JOURDAIN: No, I tell you. You've made it very well. Do you
think the suit is going to look good on me?&nbsp;
<p>MASTER TAILOR: What a question! I defy a painter with his brush to do
anything that would fit you better. I have a worker in my place who is
the greatest genius in the world at mounting a rhinegrave, and another
who is the hero of the age at assembling a doublet.&nbsp;
<p>MONSIEUR JOURDAIN: The perruque and the plumes: are they correct?&nbsp;
<p>MASTER TAILOR: Everything's good.&nbsp;
<p>MONSIEUR JOURDAIN: <i>(Looking at the tailor's suit)</i> Ah! Ah! Monsieur
Tailor, here's the material from the last suit you made for me. I know
it well.&nbsp;
<p>MASTER TAILOR: You see, the material seemed so fine that I wanted a
suit made of it for myself.&nbsp;
<p>MONSIEUR JOURDAIN: Yes, but you should not have cut it out of mine.&nbsp;
<p>MASTER TAILOR: Do you want to put on your suit?&nbsp;
<p>MONSIEUR JOURDAIN: Yes, give it to me.&nbsp;
<p>MASTER TAILOR: Wait. That's not the way it's done. I have brought men
to dress you in a cadence; these kinds of suits are put on with ceremony.
Hey there! Come in, you! Put this suit on the gentleman the way you do
with people of quality.&nbsp;
<p><i>(Four APPRENTICE TAILORS enter, two of them pull off Monsieur</i>
<i>Jourdain's breeches made for his morning</i> <i>exercises, and two others
pull off his waistcoat; then they</i> <i>put on his new suit; Monsieur</i>
<i>Jourdain promenades among them and shows them his suit for their approval.
All this to the cadence of instrumental music.)</i>
<p>APPRENTICE TAILOR: My dear gentleman, please to give the apprentices
a small tip.&nbsp;
<p>MONSIEUR JOURDAIN: What did you call me?&nbsp;
<p>APPRENTICE TAILOR: My dear gentleman.&nbsp;
<p>MONSIEUR JOURDAIN: My dear gentleman! That's what it is to dress like
people of quality! Go all your life dressed like a bourgeois and they'll
never call you "My dear gentleman." Here, take this for the "My dear gentleman."&nbsp;
<p>APPRENTICE TAILOR: My Lord, we are very much obliged to you.&nbsp;
<p>MONSIEUR JOURDAIN: "My Lord!" Oh! Oh! "My Lord!" Wait, my friend. "My
Lord" deserves something, and it's not a little word, this "My Lord." Take
this. That's what "My Lord" gives you.&nbsp;
<p>APPRENTICE TAILOR: My Lord, we will drink to the health of Your Grace.&nbsp;
<p>MONSIEUR JOURDAIN: "Your Grace!" Oh! Oh! Oh! Wait, don't go. To me,
"Your Grace!" My faith, if he goes as far as "Highness," he will have all
my purse. Wait. That's for "My Grace."&nbsp;
<p>APPRENTICE TAILOR: My Lord, we thank you very humbly for your liberality.&nbsp;
<p>MONSIEUR JOURDAIN: He did well, I was going to give him everything.&nbsp;
<p><i>(The four Apprentice Tailors celebrate with a dance, which comprises
the Second Interlude.)</i>
<p>ACT THREE&nbsp;
<p>SCENE I <i>(Monsieur Jourdain and his two Lackeys)</i>
<p>MONSIEUR JOURDAIN: Follow me, I am going to show off my clothes a little
about town. And above all both of you take care to walk close at my heels,
so people can see that you are with me.&nbsp;
<p>LACKEYS: Yes, Sir.&nbsp;
<p>MONSIEUR JOURDAIN: Call Nicole for me, so I can give her some orders.
Don't bother, there she is.&nbsp;
<p>SCENE II <i>(Nicole, Monsieur Jourdain, two Lackeys)</i>
<p>MONSIEUR JOURDAIN: Nicole!&nbsp;
<p>NICOLE: Yes, sir?
<p>MONSIEUR JOURDAIN: Listen.&nbsp;
<p>NICOLE: He, he, he, he, he!&nbsp;
<p>MONSIEUR JOURDAIN: What are you laughing about?&nbsp;
<p>NICOLE: He, he, he, he, he, he!&nbsp;
<p>MONSIEUR JOURDAIN: What does the hussy mean by this?&nbsp;
<p>NICOLE: He, he, he! Oh, how you are got up! He, he, he!&nbsp;
<p>MONSIEUR JOURDAIN: How's that?&nbsp;
<p>NICOLE: Ah! Ah! Oh Lord! He, he, he, he, he!&nbsp;
<p>MONSIEUR JOURDAIN: What kind of little baggage is this? Are you mocking
me?&nbsp;
<p>NICOLE: Certainly not, sir, I should be very sorry to do so. He, he,
he, he, he!&nbsp;
<p>MONSIEUR JOURDAIN: I'll give you a smack on the nose if you go on laughing.&nbsp;
<p>NICOLE: Sir, I can't help it. He, he, he, he, he, he!&nbsp;
<p>MONSIEUR JOURDAIN: You are not going to stop?&nbsp;
<p>NICOLE: Sir, I beg pardon. But you are so funny that I couldn't help
laughing. He, he, he!&nbsp;
<p>MONSIEUR JOURDAIN: What insolence!&nbsp;
<p>NICOLE: You're so funny like that. He, he!&nbsp;
<p>MONSIEUR JOURDAIN: I'll . . .&nbsp;
<p>NICOLE: Please excuse me. He, he, he, he!&nbsp;
<p>MONSIEUR JOURDAIN: Listen. If you go on laughing the least bit, I swear
I'll give you the biggest slap ever given.&nbsp;
<p>NICOLE: Alright, sir, it's done, I won't laugh any more.&nbsp;
<p>MONSIEUR JOURDAIN: Take good care not to. Presently you must clean .
. .&nbsp;
<p>NICOLE: He, he!&nbsp;
<p>MONSIEUR JOURDAIN: You must clean . . .&nbsp;
<p>NICOLE: He, he!&nbsp;
<p>MONSIEUR JOURDAIN: You must, I say, clean the room and . . .&nbsp;
<p>NICOLE: He, he!&nbsp;
<p>MONSIEUR JOURDAIN: Again!&nbsp;
<p>NICOLE: <i>(Falling down with laughter)</i> Then beat me sir, and let
me have my laugh out, it will do me more good. He, he, he, he, he!&nbsp;
<p>MONSIEUR JOURDAIN: I'm furious.&nbsp;
<p>NICOLE: Have mercy, sir! I beg you to let me laugh. He, he, he!&nbsp;
<p>MONSIEUR JOURDAIN: If I catch you . . .&nbsp;
<p>NICOLE: Sir! I shall burst . . . Oh! if I don't laugh. He, he, he!&nbsp;
<p>MONSIEUR JOURDAIN: But did anyone ever see such a hussy as that, who
laughs in my face instead of receiving my, orders?&nbsp;
<p>NICOLE: What would you have me do, sir?&nbsp;
<p>MONSIEUR JOURDAIN: That you consider getting my house ready for the
company that's coming soon, you hussy.&nbsp;
<p>NICOLE: Ah, by my faith, I don't feel like laughing any more. All your
guests make such a disorder here that the word "company" is enough to put
me in a bad humor.&nbsp;
<p>MONSIEUR JOURDAIN: Why, should I shut my door to everyone for your sake?&nbsp;
<p>NICOLE: You should at least shut it to some people.&nbsp;
<p>SCENE III <i>(Madame Jourdain, Monsieur Jourdain, Nicole, Lackeys)</i>
<p>MADAME JOURDAIN: Ah, ah! Here's a new story! What's this, what's this,
husband, this outfit you have on there? Don't you care what people think
of you when you are got up like that? And do you want yourself laughed
at everywhere?&nbsp;
<p>MONSIEUR JOURDAIN: None but fools and dolts will laugh at me wife.&nbsp;
<p>MADAME JOURDAIN: Truly, they haven't waited until now, your antics have
long given a laugh to everyone.&nbsp;
<p>MONSIEUR JOURDAIN: Who's everyone, if you please?&nbsp;
<p>MADAME JOURDAIN: Everyone is everyone who is right and who is wiser
than you. For my part, I am scandalized at the life you lead. I no longer
recognize our house. One would say it's the beginning of Carnival here,
every day; and beginning early in the morning, so it won't be forgotten,
one hears nothing but the racket of fiddles and singers which disturbs
the whole neighborhood.&nbsp;
<p>NICOLE: Madame speaks well. I'll never be able to get my housework done
properly with that gang you have come here. They have feet that hunt for
mud in every part of town to bring it here; and poor Fran&ccedil;oise almost
has her teeth on the floor, scrubbing the boards that your fine masters
come to dirty up every day.&nbsp;
<p>MONSIEUR JOURDAIN: What, our servant Nicole, you have quite a tongue
for a peasant.&nbsp;
<p>MADAME JOURDAIN: Nicole is right, and she has more sense than you. I'd
like to know what you think you're going to do with a Dancing Master, at
your age?&nbsp;
<p>NICOLE: And with a hulking Fencing Master who comes stamping his feet,
shaking the whole house and tearing up all the floorboards in our drawing-room.&nbsp;
<p>MONSIEUR JOURDAIN: Be quiet, both servant and wife!&nbsp;
<p>MADAME JOURDAIN: Is it that you're learning to dance for the time when
you'll have no legs to dance on?&nbsp;
<p>NICOLE: Do you want to kill someone?&nbsp;
<p>MONSIEUR JOURDAIN: Quiet, I tell you! You are ignorant women, both of
you, and you don't know the advantages of all this.&nbsp;
<p>MADAME JOURDAIN: You should instead be thinking of marrying off your
daughter, who is of an age to be provided for.&nbsp;
<p>MONSIEUR JOURDAIN: I'll think of marrying off my daughter when a suitable
match comes along, but I also want to learn about fine things.&nbsp;
<p>NICOLE: I heard said, Madame, that today he took a Philosophy Master
to thicken the soup!&nbsp;
<p>MONSIEUR JOURDAIN: Very well. I have a wish to have wit and to reason
about things with decent people.&nbsp;
<p>MADAME JOURDAIN: Don't you intend, one of these days, to go to school
and have yourself whipped at your age?&nbsp;
<p>MONSIEUR JOURDAIN: Why not? Would to God I were whipped this minute
in front of everyone, if I only knew what they learn at school!&nbsp;
<p>NICOLE: Yes, my faith! That would get you into better shape.&nbsp;
<p>MONSIEUR JOURDAIN: Without doubt.&nbsp;
<p>MADAME JOURDAIN: All this is very important to the management of your
house.&nbsp;
<p>MONSIEUR JOURDAIN: Assuredly. You both talk like beasts, and I'm ashamed
of your ignorance. For example, do you know what are you speaking just
now?&nbsp;
<p>MADAME JOURDAIN: Yes, I know that what I'm saying is well said and that
you ought to be considering living in another way.&nbsp;
<p>MONSIEUR JOURDAIN: I'm not talking about that. I'm asking if you know
what the words are that you are saying here?&nbsp;
<p>MADAME JOURDAIN: They are words that are very sensible, and your conduct
is scarcely so.&nbsp;
<p>MONSIEUR JOURDAIN: I'm not talking about that, I tell you. I'm asking
you: what is it that I'm speaking to you this minute, what is it?&nbsp;
<p>MADAME JOURDAIN: Nonsense.&nbsp;
<p>MONSIEUR JOURDAIN: No, no! That's not it. What is it we are both saying,
what language is it that we are speaking right now?&nbsp;
<p>MADAME JOURDAIN: Well?&nbsp;
<p>MONSIEUR JOURDAIN: What is it called?&nbsp;
<p>MADAME JOURDAIN: It's called whatever you want.&nbsp;
<p>MONSIEUR JOURDAIN: It's prose, you ignorant creature.&nbsp;
<p>MADAME JOURDAIN: Prose?&nbsp;
<p>MONSIEUR JOURDAIN: Yes, prose. Everything is prose that is not verse;
and everything that's not verse is prose. There! This is what it is to
study! And you <i>(to Nicole)</i>, do you know what you must do to say
U?&nbsp;
<p>NICOLE: What?&nbsp;
<p>MONSIEUR JOURDAIN: Say U, in order to see.&nbsp;
<p>NICOLE: Oh Well, U.&nbsp;
<p>MONSIEUR JOURDAIN: What do you do?&nbsp;
<p>NICOLE: I say U.&nbsp;
<p>MONSIEUR JOURDAIN: Yes, but, when you say U, what do you do?&nbsp;
<p>NICOLE: I do what you tell me to.&nbsp;
<p>MONSIEUR JOURDAIN: Oh, how strange it is to have to deal with morons!
You thrust your lips out and bring your lower jaw to your upper jaw: U,
see? U. Do you see? I make a pout: U.&nbsp;
<p>NICOLE: Yes, that's beautiful.&nbsp;
<p>MADAME JOURDAIN: How admirable.&nbsp;
<p>MONSIEUR JOURDAIN: But it's quite another thing, if you have seen O,
and D, D, and F, F.&nbsp;
<p>MADAME JOURDAIN: What is all this rigmarole?&nbsp;
<p>NICOLE: What does all this do for us?&nbsp;
<p>MONSIEUR JOURDAIN: It enrages me when I see these ignorant women.&nbsp;
<p>MADAME JOURDAIN: Go, go, you ought to send all those people packing
with their foolishness.&nbsp;
<p>NICOLE: And above all, that great gawk of a Fencing Master, who ruins
all my work with dust.&nbsp;
<p>MONSIEUR JOURDAIN: Well! This Fencing Master seems to get under your
skin. I'll soon show you how impertinent you are<i>.(He has the</i> <i>foils
brought and gives one to Nicole).</i> There. Demonstration: The line of
the body. When your opponent thrusts in quarte, you need only do this,
and when they thrust in tierce, you need only do this. That is the way
never to be killed, and isn't it fine to be assured of what one does, when
fighting against someone? There, thrust at me a little, to see.&nbsp;
<p>NICOLE: Well then, what? <i>(Nicole thrusts, giving him several</i>
<i>hits).</i>
<p>MONSIEUR JOURDAIN: Easy! Wait! Oh! Gently! Devil take the hussy!&nbsp;
<p>NICOLE: You told me to thrust.&nbsp;
<p>MONSIEUR JOURDAIN: Yes, but you thrust in tierce, before you thrust
in quarte, and you didn't have the patience to let me parry.&nbsp;
<p>MADAME JOURDAIN: You are a fool, husband, with all your fantasies, and
this has come to you since you took a notion to associate with the nobility.&nbsp;
<p>MONSIEUR JOURDAIN: When I associate with the nobility, I show my good
judgment; and that's better than associating with your shopkeepers.&nbsp;
<p>MADAME JOURDAIN: Oh yes, truly! There's a great deal to gain by consorting
with your nobles, and you did so well with your fine Count you were so
taken with!&nbsp;
<p>MONSIEUR JOURDAIN: Peace! Think what you're saying. You know very well,
wife, that you don't know who you're talking about, when you talk about
him! He's a more important person than you think: a great Lord, respected
at court, and who talks to the King just as I talk to you. Is it not a
thing which does me great honor, that a person of this quality is seen
to come so often to my house, who calls me his dear friend and treats me
as if I were his equal? He has more regard for me than one would ever imagine;
and, in front of everyone, he shows me so much affection that I am embarrassed
myself.&nbsp;
<p>MADAME JOURDAIN: Yes, he has a kindness for you, and shows his affection,
but he borrows your money.&nbsp;
<p>MONSIEUR JOURDAIN: So! Isn't it an honor for me to lend money to a man
of that condition? And can I do less for a lord who calls me his dear friend?&nbsp;
<p>MADAME JOURDAIN: And this lord, what does he do for you?&nbsp;
<p>MONSIEUR JOURDAIN: Things that would astonish you if you knew them.&nbsp;
<p>MADAME JOURDAIN: Like what?&nbsp;
<p>MONSIEUR JOURDAIN: Blast! I cannot explain myself. It must suffice that
if I have lent him money, he'll pay it back fully, and before long.&nbsp;
<p>MADAME JOURDAIN: Yes. You are waiting for that.&nbsp;
<p>MONSIEUR JOURDAIN: Assuredly. Didn't he tell me so?&nbsp;
<p>MADAME JOURDAIN: Yes, yes, he won't fail to do it.&nbsp;
<p>MONSIEUR JOURDAIN: He swore it on the faith of a gentleman.&nbsp;
<p>MADAME JOURDAIN: Nonsense!&nbsp;
<p>MONSIEUR JOURDAIN: Well! You are very obstinate, wife. I tell you he
will keep his word, I'm sure of it.&nbsp;
<p>MADAME JOURDAIN: And I'm sure he will not, and that all his show of
affection is only to flatter you.&nbsp;
<p>MONSIEUR JOURDAIN: Be still. Here he is.&nbsp;
<p>MADAME JOURDAIN: That's all we needed! He's come again perhaps to borrow
something from you. The very sight of him spoils my appetite.&nbsp;
<p>MONSIEUR JOURDAIN: Be still, I tell you.&nbsp;
<p>SCENE IV <i>(Count Dorante, Monsieur Jourdain, Madame Jourdain, Nicole)</i>
<p>DORANTE: My dear friend, Monsieur Jourdain, how do you do?&nbsp;
<p>MONSIEUR JOURDAIN: Very well, sir, to render you my small services.&nbsp;
<p>DORANTE: And Madame Jourdain there, how is she?&nbsp;
<p>MADAME JOURDAIN: Madame Jourdain is as well as she can be.&nbsp;
<p>DORANTE: Well! Monsieur Jourdain, you are excellently well dressed!&nbsp;
<p>MONSIEUR JOURDAIN: You see.&nbsp;
<p>DORANTE: You have a fine air in that suit, and we have no young men
at court who are better made than you.&nbsp;
<p>MONSIEUR JOURDAIN: Well! well!&nbsp;
<p>MADAME JOURDAIN: <i>(Aside)</i> He scratches him where it itches.&nbsp;
<p>DORANTE: Turn around. It's positively elegant.&nbsp;
<p>MADAME JOURDAIN: <i>(Aside)</i> Yes, as big a fool behind as in front.&nbsp;
<p>DORANTE: My faith, Monsieur Jourdain, I was strangely impatient to see
you. You are the man in the world I esteem most, and I was speaking of
you again this morning in the bedchamber of the King.&nbsp;
<p>MONSIEUR JOURDAIN: You do me great honor, sir. <i>(To Madame Jourdain)</i>
In the King's bedchamber!&nbsp;
<p>DORANTE: Come, put on . . .&nbsp;
<p>MONSIEUR JOURDAIN: Sir, I know the respect I owe you.&nbsp;
<p>DORANTE: Heavens! Put on your hat; I pray you, no ceremony between us.&nbsp;
<p>MONSIEUR JOURDAIN: Sir . . .&nbsp;
<p>DORANTE: Put it on, I tell you, Monsieur Jourdain: you are my friend.&nbsp;
<p>MONSIEUR JOURDAIN: Sir, I am your humble servant.&nbsp;
<p>DORANTE: I won't be covered if you won't.&nbsp;
<p>MONSIEUR JOURDAIN: <i>(Putting on his hat) </i>I would rather be uncivil
than troublesome.&nbsp;
<p>DORANTE: I am in your debt, as you know.&nbsp;
<p>MADAME JOURDAIN: Yes, we know it all too well.&nbsp;
<p>DORANTE: You have generously lent me money upon several occasions, and
you have obliged me with the best grace in the world, assuredly.&nbsp;
<p>MONSIEUR JOURDAIN: Sir, you jest with me.&nbsp;
<p>DORANTE: But I know how to repay what is lent me, and to acknowledge
the favors rendered me.&nbsp;
<p>MONSIEUR JOURDAIN: I have no doubt of it, sir.&nbsp;
<p>DoRANTE: I want to settle this matter with you, and I came here to make
up our accounts together.&nbsp;
<p>MONSIEUR JOURDAIN: There wife! You see your impertinence!&nbsp;
<p>DORANTE: I am a man who likes to repay debts as soon as I can.&nbsp;
<p>MONSIEUR JOURDAIN: <i>(Aside to Madame Jourdain)</i> I told you so.&nbsp;
<p>DORANTE: Let's see how much do I owe you.&nbsp;
<p>MONSIEUR JOURDAIN: <i>(Aside to Madame Jourdain)</i> There you are,
with your ridiculous suspicions.&nbsp;
<p>DORANTE: Do you remember well all the money you have lent me?&nbsp;
<p>MONSIEUR JOURDAIN: I believe so. I made a little note of it. Here it
is. Once you were given two hundred louis d'or.&nbsp;
<p>DORANTE: That's true.&nbsp;
<p>MONSIEUR JOURDAIN: Another time, six-score.&nbsp;
<p>DORANTE: Yes.&nbsp;
<p>MONSIEUR JOURDAIN: And another time, a hundred and forty.&nbsp;
<p>DORANTE: You're right.&nbsp;
<p>MONSIEUR JOURDAIN: These three items make four hundred and sixty louis
d'or, which comes to five thousand sixty livres.&nbsp;
<p>DORANTE: The account is quite right. Five thousand sixty livres.&nbsp;
<p>MONSIEUR JOURDAIN: One thousand eight hundred thirty-two livres to your
plume-maker.&nbsp;
<p>DORANTE: Exactly.&nbsp;
<p>MONSIEUR JOURDAIN: Two thousand seven hundred eighty livres to your
tailor.&nbsp;
<p>DoRANTE: It's true.&nbsp;
<p>MONSIEUR JOURDAIN: Four thousand three hundred seventy-nine livres twelve
sols eight deniers to your tradesman.&nbsp;
<p>DORANTE: Quite right. Twelve sols eight deniers. The account is exact.&nbsp;
<p>MONSIEUR JouRDAIN: And one thousand seven hundred forty-eight livres
seven sols four deniers to your saddler.&nbsp;
<p>DORANTE: All that is true. What does that come to?&nbsp;
<p>MONSIEUR JOURDAIN: Sum total, fifteen thousand eight hundred livres.&nbsp;
<p>DORANTE: The sum total is exact: fifteen thousand eight hundred livres.
To which add two hundred pistoles that you are going to give me, which
will make exactly eighteen thousand francs, which I shall pay you at the
first opportunity.&nbsp;
<p>MADAME JOURDAIN: <i>(Aside)</i> Well, didn't I predict it?&nbsp;
<p>MONSIEUR JOURDAIN: Peace!&nbsp;
<p>DORANTE: Will that inconvenience you, to give me the amount I say?&nbsp;
<p>MONSIEUR JOURDAIN: Oh, no!&nbsp;
<p>MADAME JOURDAIN: <i>(Aside)</i> That man is making a milk-cow out of
you!&nbsp;
<p>MONSIEUR JOURDAIN: Be quiet!&nbsp;
<p>DoRANTE: If that inconveniences you, I will seek it somewhere else.&nbsp;
<p>MONSIEUR JOURDAIN: NO, Sir.&nbsp;
<p>MADAME JOURDAIN: <i>(Aside)</i> He won't be content until he's ruined
you.&nbsp;
<p>MONSIEUR JOURDAIN: Be quiet, I tell you.&nbsp;
<p>DORANTE: You have only to tell me if that embarrasses you.&nbsp;
<p>MONSIEUR JOURDAIN: Not at all, sir.&nbsp;
<p>MADAME JOURDAIN: <i>(Aside)</i> He's a real wheedler!&nbsp;
<p>MONSIEUR JOURDAIN: Hush.&nbsp;
<p>MADAME JOURDAIN: <i>(Aside)</i> He'll drain you to the last sou.&nbsp;
<p>MONSIEUR JOURDAIN: Will you be quiet?&nbsp;
<p>DORANTE: I have a number of people who would gladly lend it to me; but
since you are my best friend, I believed I might do you wrong if I asked
someone else for it.&nbsp;
<p>MONSIEUR JOURDAIN: It's too great an honor, sir, that you do me. I'll
go get it for you.&nbsp;
<p>MADAME JOURDAIN: <i>(Aside)</i> What! You're going to give it to him
again?&nbsp;
<p>MONSIEUR JOURDAIN: What can I do? Do you want me to refuse a man of
this station, who spoke about me this morning in the King's bedchamber?&nbsp;
<p>MADAME JOURDAIN: <i>(Aside)</i> Go on, you're a true dupe.&nbsp;
<p>SCENE V <i>(Dorante, Madame Jourdain, Nicole)</i>
<p>DORANTE: You appear to be very melancholy. What is wrong, Madame Jourdain?&nbsp;
<p>MADAME JOURDAIN: I have a head bigger than my fist, even if it's not
swollen.&nbsp;
<p>DORANTE: Mademoiselle, your daughter, where is she that I don't see
her?&nbsp;
<p>MADAME JOURDAIN: Mademoiselle my daughter is right where she is.&nbsp;
<p>DORANTE: How is she getting on?&nbsp;
<p>MADAME JOURDAIN: She "gets on" on her two legs.&nbsp;
<p>DORANTE: Wouldn't you like to come with her one of these days to see
the ballet and the comedy they are putting on at court?&nbsp;
<p>MADAME JOURDAIN: Yes truly, we have a great desire to laugh, a very
great desire to laugh.&nbsp;
<p>DORANTE: I think, Madame Jourdain, that you must have had many admirers
in your youth, beautiful and good humored as you were.&nbsp;
<p>MADAME JOURDAIN: By Our Lady! Sir, is Madame Jourdain decrepit, and
does her head already shake with palsy?&nbsp;
<p>DORANTE: Ah! My faith, Madame Jourdain, I beg pardon. I did not remember
that you are young. I am often distracted. Pray excuse my impertinence.&nbsp;
<p>SCENE VI <i>(Monsieur Jourdain, Madame Jourdain, Dorante, Nicole)</i>
<p>MONSIEUR JOURDAIN: There are two hundred louis d'or.&nbsp;
<p>DORANTE: I assure you, Monsieur Jourdain, that I am completely yours,
and that I am eager to render you a service at court.&nbsp;
<p>MONSIEUR JOURDAIN: I'm much obliged to you.&nbsp;
<p>DORANTE: If Madame Jourdain desires to see the royal entertainment,
I will have the best places in the ballroom given to her.&nbsp;
<p>MADAME JOURDAIN: Madame Jourdain kisses your hands [but declines].&nbsp;
<p>DORANTE: <i>(Aside to Monsieur Jourdain)</i> Our beautiful marchioness,
as I sent word to you, in my note, will come here soon for the ballet and
refreshments; I finally brought her to consent to the entertainment you
wish to give her.&nbsp;
<p>MONSIEUR JOURDAIN: Let us move a little farther away, for a certain
reason.&nbsp;
<p>DORANTE: It has been eight days since I saw you, and I have sent you
no news regarding the diamond you put into my hands to present to her on
your behalf; but it's because I had the greatest difficulty in conquering
her scruples, and it's only today that she resolved to accept it.&nbsp;
<p>MONSIEUR JOURDAIN: How did she judge it?&nbsp;
<p>DORANTE: Marvelous. And I am greatly deceived if the beauty of that
diamond does not produce for you an admirable effect on her spirit.&nbsp;
<p>MONSIEUR JOURDAIN: Would to Heaven!&nbsp;
<p>MADAME JOURDAIN: <i>(To Nicole)</i> Once he's with him he cannot leave
him.&nbsp;
<p>DORANTE: I made her value as she should the richness of that present
and the grandeur of your love.&nbsp;
<p>MONSIEUR JOURDAIN: These are, sir, favors which overwhelm me; and I
am in the very greatest confusion at seeing a person of your quality demean
himself for me as you do.&nbsp;
<p>DORANTE: Are you joking? Among friends, does one stop at these sorts
of scruples? And wouldn't you do the same thing for me, if the occasion
offered?&nbsp;
<p>MONSIEUR JOURDAIN: Oh! Certainly, and with all my heart.&nbsp;
<p>MADAME JOURDAIN: <i>(To Nicole)</i> His presence weighs me down!&nbsp;
<p>DORANTE: As for me, I never mind anything when it is necessary to serve
a friend; and when you confided in me about the ardent passion you have
formed for that delightful marchioness with whom I have contacts, you saw
that I volunteered immediately to assist your love.&nbsp;
<p>MONSIEUR JOURDAIN: It's true, these are favors that confound me.&nbsp;
<p>MADAME JOURDAIN: <i>(To Nicole)</i> Will he never go?&nbsp;
<p>NICOLE: They enjoy being together.&nbsp;
<p>DORANTE: You took the right tack to touch her heart. Women love above
all the expenses we go to for them; and your frequent serenades, your continual
bouquets, that superb fireworks for her over the water, the diamond she
has received from you, and the entertainment you are preparing for her,
all this speaks much better in favor of your love than all the words you
might have spoken yourself.&nbsp;
<p>MONSIEUR JOURDAIN: There are no expenditures I would not make if by
that means I might find the road to her heart. A woman of quality has ravishing
charms for me and it's an honor I would purchase at any price.&nbsp;
<p>MADAME JOURDAIN: <i>(To Nicole)</i> What can they talk about so much?
Steal over and listen a little.&nbsp;
<p>DORANTE: Soon enough you will enjoy at your ease the pleasure of seeing
her, and your eyes will have a long time to satisfy themselves.&nbsp;
<p>MONSIEUR JOURDAIN: To be completely free, I have arranged for my wife
to go to dinner at her sister's, where she'll spend all the after-dinner
hours.&nbsp;
<p>DORANTE: You have done prudently, as your wife might have embarrassed
us. I have given the necessary orders to the cook for you, and for the
ballet. It is of my own invention; and, provided the execution corresponds
to the idea, I am sure it will be found . . .&nbsp;
<p>MONSIEUR JOURDAIN<i>: (Sees that Nicole is listening, and gives her
a</i> <i>slap)</i> Say! You're very impertinent! <i>(To Dorante)</i> Let's
go, if you please.&nbsp;
<p>SCENE VII <i>(Madame Jourdain, Nicole)</i>&nbsp;<i>&nbsp;</i>
<p>NICOLE: My faith, Madame, curiosity has cost me; but I believe something's
afoot, since they were talking of some event where they did not want you
to be.&nbsp;
<p>MADAME JOURDAIN: Today's not the first time, Nicole, that I've had suspicions
about my husband. I'm the most mistaken woman in the world, or there's
some love-affair in the making. But let us see to my daughter. You know
the love Cl&eacute;onte has for her. He's a man who appeals to me, and
I want to help his suit and give him Lucile, if I can.&nbsp;
<p>NICOLE: Truly, Madame, I'm the most delighted creature in the world
to see that you feel this way, since, if the master appeals to you, his
valet appeals to me no less, and I could wish our marriage made under the
shadow of theirs.&nbsp;
<p>MADAME JOURDAIN: Go speak to Cl&eacute;onte about it for me, and tell
him to come to me soon so we can present his request to my husband for
my daughter in marriage.&nbsp;
<p>NICOLE: I hasten, Madame, with joy, for I could not receive a more agreeable
commission. <i>(Alone)</i> I shall, I think, make them very happy.&nbsp;
<p>SCENE VIII <i>(Cl&eacute;onte, Covielle, Nicole)</i>
<p>NICOLE: Ah! I'm glad to have found you. I'm an ambassadress of joy,
and I come . . .&nbsp;
<p>CL&Eacute;ONTE: Get out, traitor, and don't come to amuse me with your
treacherous words.&nbsp;
<p>NICOLE: Is this how you receive me . . .&nbsp;
<p>CL&Eacute;ONTE: Get out, I tell you, and go tell your faithless mistress
that she will never again in her life deceive the too trusting Cl&eacute;onte.&nbsp;
<p>NICOLE: What caprice is this? My dear Covielle, explain a little what
you are trying to say.&nbsp;
<p>COVIELLE: Your dear Covielle, little hussy? Go, quickly, out of my sight,
villainess , and leave me in peace.&nbsp;
<p>NICOLE: What! You come to me too. . .&nbsp;
<p>COVIELLE: Out of my sight, I tell you, and never speak to me again.&nbsp;
<p>NICOLE: My word! What fly has bitten those two? Let's go tell this pretty
story to my mistress.&nbsp;
<p>SCENE IX <i>(Cl&eacute;onte, Covielle)</i>
<p>CL&Eacute;ONTE: What! Treat a lover in this way? And a lover who is
the most faithful and passionate of lovers?&nbsp;
<p>COVIELLE: It is a frightful thing that they have done to us both.&nbsp;
<p>CL&Eacute;ONTE: I show a woman all the ardor and tenderness that can
be imagined; I love nothing in the world but her, and I have nothing but
her in my thoughts; she is all I care for, all my desire, all my joy; I
talk of nothing but her, I think of nothing but her, I have no dreams but
of her, I breathe only because of her, my heart lives wholly in her; and
see how so much love is well repaid! I have been two days without seeing
her, which are for me two frightful centuries; I meet her by chance; my
heart, at that sight, is completely transported, my joy shines on my face;
I fly with ecstasy towards her -- and the faithless one averts her eyes
and hurries by as if she had never seen me in her life!&nbsp;
<p>COVIELLE: I say the same things as you.&nbsp;
<p>CL&Eacute;ONTE: Covielle, can one see anything to equal this perfidy
of the ungrateful Lucile?&nbsp;
<p>COVIELLE: And that, Monsieur, of the treacherous Nicole?&nbsp;
<p>CL&Eacute;ONTE: After so many ardent homages, sighs, and vows that I
have made to her charms!&nbsp;
<p>COVIELLE: After so many assiduous compliments, cares, and services that
I rendered her in the kitchen!&nbsp;
<p>CL&Eacute;ONTE: So many tears I have shed at her knees!&nbsp;
<p>COVIELLE: So many buckets of water I have drawn for her!&nbsp;
<p>CL&Eacute;ONTE: So much passion I have shown her in loving her more
than myself!&nbsp;
<p>COVIELLE: So much heat I have endured in turning the spit for her!&nbsp;
<p>CL&Eacute;ONTE: She flies from me in disdain!&nbsp;
<p>COVIELLE: She turns her back on me!&nbsp;
<p>CL&Eacute;ONTE: It is perfidy worthy of the greatest punishments.&nbsp;
<p>COVIELLE: It is treachery that merits a thousand slaps.&nbsp;
<p>CL&Eacute;ONTE: Don't think, I beg you, of ever speaking in her favor
to me.&nbsp;
<p>COVIELLE: I, sir? God forbid!&nbsp;
<p>CL&Eacute;ONTE: Never come to excuse the action of this faithless woman.&nbsp;
<p>COVIELLE: Have no fear.&nbsp;
<p>CLEONTE; No, you see, all your speeches in her defense will serve no
purpose.&nbsp;
<p>COVIELLE: Who even thinks of that?&nbsp;
<p>CL&Eacute;ONTE: I want to conserve my resentment against her and end
all contact with her.&nbsp;
<p>COVIELLE: I agree.&nbsp;
<p>CL&Eacute;ONTE: This Count who goes to her house is perhaps pleasant
in her view; and her mind, I well see, allows itself to be dazzled by social
standing. But it is necessary for me, for my honor, to prevent the scandal
of her inconstancy. I want to break off with her first and not leave her
all the glory of dumping me.&nbsp;
<p>COVIELLE: That's very well said, and I agree, for my part, with all
your feelings.&nbsp;
<p>CL&Eacute;ONTE: Strengthen my resentment and aid my resolve against
all the remains of love that could speak in her behalf. Tell me, I order
you, all the bad you can of her; make for me a painting of her that will
render her despicable; and show well, in order to disgust me, all the faults
that you can see in her.&nbsp;
<p>COVIELLE: Her, sir? There's a pretty fool, a well made flirt for you
to give so much love! I see only mediocrity in her, and you will find a
hundred women who will be more worthy of you. First of all, she has small
eyes.&nbsp;
<p>CL&Eacute;ONTE: That's true, she has small eyes; but they are full of
fire, the brightest, the keenest in the world, the most touching eyes that
one can see.&nbsp;
<p>COVIELLE: She has a big mouth.&nbsp;
<p>CL&Eacute;ONTE: Yes; but upon it one sees grace that one never sees
on other mouths; and the sight of that mouth, which is the most attractive,
the most amorous in the world, inspires desire.&nbsp;
<p>COVIELLE: As for her figure, she's not tall.&nbsp;
<p>CL&Eacute;ONTE: No, but she is graceful and well made.&nbsp;
<p>COVIELLE: She affects a nonchalance in her speech and in her actions.&nbsp;
<p>CL&Eacute;ONTE: That's true; but she may be forgiven all that, for her
manners are so engaging, they have an irresistible charm.&nbsp;
<p>COVIELLE: As to her wit . . .&nbsp;
<p>CL&Eacute;ONTE: Ah! She has that, Covielle, the finest, the most delicate!&nbsp;
<p>COVIELLE: Her conversation . . .&nbsp;
<p>CL&Eacute;ONTE: Her conversation is charming.&nbsp;
<p>COVIELLE: She is always serious . . .&nbsp;
<p>CLEONTE; Would you have grinning playfulness, constant open merriment?
And do you see anything more impertinent than those women who laugh all
the time?&nbsp;
<p>COVIELLE: But finally she is as capricious as any woman in the world.&nbsp;
<p>CL&Eacute;ONTE: Yes, she is capricious, I concede; but everything becomes
beautiful ladies well, one suffers everything for beauty.&nbsp;
<p>COVIELLE: I see clearly how it goes, you want to go on loving her.&nbsp;
<p>CL&Eacute;ONTE: Me, I'd like better to die; and I am going to hate her
as much as I loved her.&nbsp;
<p>COVIELLE: How, if you find her so perfect?&nbsp;
<p>CL&Eacute;ONTE: That's how my vengeance will be more striking, in that
way I'll show better the strength of my heart, by hating her, by quitting
her, with all her beauty, all her charms, and as lovable as I find her.
Here she is.&nbsp;
<p>SCENE X <i>(Cl&eacute;onte, Lucile, Covielle, Nicole)</i>
<p>NICOLE: For my part, I was completely shocked at it.&nbsp;
<p>LUCILE: It can only be, Nicole, what I told you. But there he is.&nbsp;
<p>CL&Eacute;ONTE: I don't even want to speak to her.&nbsp;
<p>COVIELLE: I'll imitate you.&nbsp;
<p>LUCILE: What's the matter Cl&eacute;onte? What's wrong with you?&nbsp;
<p>NICOLE: What's the matter with you, Covielle?&nbsp;
<p>LUCILE: What grief possesses you?&nbsp;
<p>NICOLE: What bad humor holds you?&nbsp;
<p>LUCILE: Are you mute, Cl&eacute;onte?&nbsp;
<p>NICOLE: Have you lost your voice, Covielle?&nbsp;
<p>CL&Eacute;ONTE: Is this not villainous!&nbsp;
<p>COVIELLE: It's a Judas!&nbsp;
<p>LUCILE: I clearly see that our recent meeting has troubled you.&nbsp;
<p>CL&Eacute;ONTE: Ah! Ah! She sees what she's done.&nbsp;
<p>NICOLE: Our greeting this morning has annoyed you.&nbsp;
<p>COVIELLE: She has guessed the problem.&nbsp;
<p>LUCILE: Isn't it true, Cl&eacute;onte, that this is the cause of your
resentment?&nbsp;
<p>CL&Eacute;ONTE: Yes, perfidious one, it is, since I must speak; and
I must tell that you shall not triumph in your faithlessness as you think,
I want to be the first to break with you, and you won't have the advantage
of driving me away. I will have difficulty in conquering the love I have
for you; it will cause me pain; I will suffer for a while. But I'll come
through it, and I would rather stab myself through the heart than have
the weakness to return to you.&nbsp;
<p>COVIELLE: Me too.&nbsp;
<p>LUCILE: What an uproar over nothing. I want to tell you, Cl&eacute;onte,
what made me avoid joining you this morning.&nbsp;
<p>CL&Eacute;ONTE: No, I don't want to listen to anything . . .&nbsp;
<p>NICOLE: I want to tell you what made us pass so quickly.&nbsp;
<p>COVIELLE: I don't want to hear anything.&nbsp;
<p>LUCILE: <i>(Following Cl&eacute;onte)</i> Know that this morning . .
.&nbsp;
<p>CL&Eacute;ONTE: No, I tell you.&nbsp;
<p>NICOLE: <i>(Following Covielle)</i> Learn that . . .&nbsp;
<p>COVIELLE: No, traitor.&nbsp;
<p>LUCILE: Listen.&nbsp;
<p>CL&Eacute;ONTE: I won't listen.&nbsp;
<p>NICOLE: Let me speak.&nbsp;
<p>COVIELLE: I'm deaf.&nbsp;
<p>LUCILE: Cl&eacute;onte!&nbsp;
<p>CL&Eacute;ONTE: No.&nbsp;
<p>NICOLE: Covielle!&nbsp;
<p>COVIELLE: I won't listen.&nbsp;
<p>LUCILE: Stop.&nbsp;
<p>CL&Eacute;ONTE: Gibberish!&nbsp;
<p>NICOLE: Listen to me.&nbsp;
<p>COVIELLE: Rubbish!&nbsp;
<p>LUCILE: One moment.&nbsp;
<p>CL&Eacute;ONTE: Never.&nbsp;
<p>NICOLE: A little patience.&nbsp;
<p>COVIELLE: Not interested!&nbsp;
<p>LUCILE: Two words.&nbsp;
<p>CL&Eacute;ONTE: No, you've had them.&nbsp;
<p>NICOLE: One word.&nbsp;
<p>COVIELLE: No more talking.&nbsp;
<p>LUCILE: Alright! Since you don't want to listen to me, think what you
like, and do what you want.&nbsp;
<p>NICOLE: Since you act like that, make whatever you like of it all.&nbsp;
<p>CL&Eacute;ONTE: Let us know the reason, then, for such a fine reception.&nbsp;
<p>LUCILE: It no longer pleases me to say.&nbsp;
<p>COVIELLE: Let us know something of your story.&nbsp;
<p>NICOLE: I ,myself, no longer want to tell you.&nbsp;
<p>CL&Eacute;ONTE: Tell me . . .&nbsp;
<p>LUCILE: No, I don't want to say anything.&nbsp;
<p>COVIELLE: Tell it . . .&nbsp;
<p>NICOLE: No, I'll tell nothing.&nbsp;
<p>CL&Eacute;ONTE: For pity . . .&nbsp;
<p>LUCILE: No, I say.&nbsp;
<p>COVIELLE: Have mercy.&nbsp;
<p>NICOLE: It's no use.&nbsp;
<p>CL&Eacute;ONTE: I beg you.&nbsp;
<p>LUCILE: Leave me . . .&nbsp;
<p>COVIELLE: I plead with you.&nbsp;
<p>NICOLE: Get out of here.&nbsp;
<p>CL&Eacute;ONTE: Lucile!&nbsp;
<p>LUCILE: No.&nbsp;
<p>COVIELLE: Nicole!&nbsp;
<p>NICOLE: Never.&nbsp;
<p>CL&Eacute;ONTE: In the name of God! . . .&nbsp;
<p>LUCILE: I don't want to.&nbsp;
<p>COVIELLE: Talk to me.&nbsp;
<p>NICOLE: Definitely not.&nbsp;
<p>CL&Eacute;ONTE: Clear up my doubts.&nbsp;
<p>LUCILE: No, I'll do nothing.&nbsp;
<p>COVIELLE: Relieve my mind!&nbsp;
<p>NICOLE: No, I don't care to.&nbsp;
<p>CL&Eacute;ONTE: Alright! since you are so little concerned to take me
out of my pain and to justify yourself for the shameful treatment you gave
to my passion, you are seeing me, ingrate, for the last time, and I am
going far from you to die of sorrow and love.&nbsp;
<p>COVIELLE: And I -- I will follow in his steps.&nbsp;
<p>LUCILE: Cl&eacute;onte!&nbsp;
<p>NICOLE: Covielle!&nbsp;
<p>CL&Eacute;ONTE: What?&nbsp;
<p>COVIELLE: Yes?&nbsp;
<p>LUCILE: Where are you going?&nbsp;
<p>CL&Eacute;ONTE: Where I told you.&nbsp;
<p>COVIELLE: We are going to die.&nbsp;
<p>LUCILE: You are going to die, Cl&eacute;onte?&nbsp;
<p>CL&Eacute;ONTE: Yes, cruel one, since you wish it.&nbsp;
<p>LUCILE: Me! I wish you to die?&nbsp;
<p>CL&Eacute;ONTE: Yes, you wish it.&nbsp;
<p>LUCILE: Who told you that?&nbsp;
<p>CL&Eacute;ONTE: Is it not wishing it when you don't wish to clear up
my suspicions?&nbsp;
<p>LUCILE: Is it my fault? And, if you had wished to listen to me, would
I not have told you that the incident you complain of was caused this morning
by the presence of an old aunt who insists that the mere approach of a
man dishonors a woman -- an aunt who constantly delivers sermons to us
on this text, and tells us that all men are like devils we must flee?&nbsp;
<p>NICOLE: There's the key to the entire affair.&nbsp;
<p>CL&Eacute;ONTE: Are you sure you're not deceiving me, Lucile?&nbsp;
<p>COVIELLE: Aren't you making this up?&nbsp;
<p>LUCILE: There's nothing more true.&nbsp;
<p>NICOLE: It's the absolute truth.&nbsp;
<p>COVIELLE: Are we going to give in to this?&nbsp;
<p>CL&Eacute;ONTE: Ah! Lucile, how with a word from your lips you are able
to appease the things in my heart, and how easily one allows himself to
be persuaded by the people one loves!&nbsp;
<p>COVIELLE: How easily we are manipulated by these blasted minxes!&nbsp;
<p>SCENE XI <i>(Madame Jourdain, Cl&eacute;onte, Lucile, Covielle, Nicole)</i>
<p>MADAME JOURDAIN: I am very glad to see you, Cl&eacute;onte and you are
here at just the right time. My husband is coming, seize the opportunity
to ask for Lucile in marriage.&nbsp;
<p>CL&Eacute;ONTE: Ah! Madame, how sweet that word is to me, and how it
flatters my desires! Could I receive an order more charming, a favor more
precious?&nbsp;
<p>SCENE XII <i>(Monsieur Jourdain, Madame Jourdain, Cl&eacute;onte, Lucile,
Covielle,</i> <i>Nicole)</i>
<p>CL&Eacute;ONTE: Sir, I did not want to use anyone to make a request
of you that I have long considered. It affects me enough for me to take
charge of it myself; and, without further ado, I will say to you that the
honor of being your son-in-law is a glorious favor that I beg you to grant
me.&nbsp;
<p>MONSIEUR JOURDAIN: Before giving you a reply, sir, I beg to ask if you
are a gentleman.&nbsp;
<p>CL&Eacute;ONTE: Sir, most people don't hesitate much over this question.
They use the word carelessly. They take the name without scruple, and the
usage of today seems to validate the theft. As for me, I confess to you,
I have a little more delicate feelings on this matter. I find all imposture
undignified for an honest man, and that there is cowardice in disguising
what Heaven made us at birth; to present ourselves to the eyes of the world
with a stolen title; to wish to give a false impression. I was born of
parents who, without doubt, held honorable positions. I have six years
of service in the army, and I find myself established well enough to maintain
a tolerable rank in the world; but despite all that I certainly have no
wish to give myself a name to which others in my place might believe they
could pretend, and I will tell you frankly that I am not a gentleman.&nbsp;
<p>MONSIEUR JOURDAIN: Shake hands, Sir! My daughter is not for you.&nbsp;
<p>CL&Eacute;ONTE: What?&nbsp;
<p>MONSIEUR JOURDAIN: You are not a gentleman. You will not have my daughter.&nbsp;
<p>MADAME JOURDAIN: What are you trying to say with your talk of gentleman?
Are we ourselves of the line of St. Louis?&nbsp;
<p>MONSIEUR JOURDAIN: Quiet, wife, I see what you are up to.&nbsp;
<p>MADAME JOURDAIN: Aren't we both descended from good bourgeois families?&nbsp;
<p>MONSIEUR JOURDAIN: There's that hateful word!&nbsp;
<p>MADAME JOURDAIN: And wasn't your father a merchant just like mine?&nbsp;
<p>MONSIEUR JOURDAIN: Plague take the woman! She never fails to do this!
If your father was a merchant, so much the worse for him! But, as for mine,
those who say that are misinformed. All that I have to say to you is, that
I want a gentleman for a son-in-law.&nbsp;
<p>MADAME JOURDAIN: It's necessary for your daughter to have a husband
who is worthy of her, and it's better for her to have an honest rich man
who is well made than an impoverished gentleman who is badly built.&nbsp;
<p>NICOLE: That's true. We have the son of a gentleman in our village who
is the most ill formed and the greatest fool I have ever seen.&nbsp;
<p>MONSIEUR JOURDAIN: Hold your impertinent tongue! You always butt into
the conversation. I have enough money for my daughter, I need only honor,
and I want to make her a marchioness.&nbsp;
<p>MADAME JOURDAIN: A marchioness?&nbsp;
<p>MONSIEUR JOURDAIN: Yes, marchioness.&nbsp;
<p>MADAME JOURDAIN: Alas! God save me from it!&nbsp;
<p>MONSIEUR JOURDAIN: It's a thing I have resolved.&nbsp;
<p>MADAME JOURDAIN: As for me, it's a thing I'll never consent to. Marriages
above one's station are always subject to great inconveniences. I have
absolutely no wish for a son-in-law who can reproach her parents to my
daughter, and I don't want her to have children who will be ashamed to
call me their grandmother. If she arrives to visit me in the equipage of
a great lady and if she fails, by mischance, to greet someone of the neighborhood,
they wouldn't fail immediately to say a hundred stupidities. "Do you see,"
they would say, "this madam marchioness who gives herself such glorious
airs? It's the daughter of Monsieur Jourdain, who was all too glad, when
she was little, to play house with us; she's not always been so haughty
as she now is; and her two grandfathers sold cloth near St. Innocent's
Gate. They amassed wealth for their children, they're paying dearly perhaps
for it now in the other world, and one can scarcely get that rich by being
honest." I certainly don't want all that gossip, and I want, in a word,
a man who will be obliged to me for my daughter and to whom I can say,
"Sit down there, my son-in-law, and have dinner with me."&nbsp;
<p>MONSIEUR JOURDAIN: Surely those are the sentiments of a little spirit,
to want to remain always in a base condition. Don't talk back to me: my
daughter will be a marchioness in spite of everyone. And, if you make me
angrier, I'll make a duchess of her.&nbsp;
<p>MADAME JOURDAIN: Cl&eacute;onte, don't lose courage yet. Follow me,
my daughter, and tell your father resolutely that, if you can't have him,
you don't want to marry anyone.&nbsp;
<p>SCENE XIII <i>(Cl&eacute;onte, Covielle)</i>
<p>COVIELLE: You've made a fine business, with your pretty sentiments.&nbsp;
<p>CL&Eacute;ONTE: What do you want? I have a scruple about that which
precedent cannot conquer.&nbsp;
<p>COVIELLE: Don't you make a fool of yourself by taking it seriously with
a man like that? Don't you see that he is a fool? And would it cost you
anything to accommodate yourself to his fantasies?&nbsp;
<p>CL&Eacute;ONTE: You're right. But I didn't believe it necessary to prove
nobility in order to be Monsieur Jourdain's son-in-law.&nbsp;
<p>COVIELLE: Ha, ha, ha!&nbsp;
<p>CL&Eacute;ONTE: What are you laughing at?&nbsp;
<p>COVIELLE: At a thought that just occurred to me of how to play our man
a trick and help you obtain what you desire.&nbsp;
<p>CL&Eacute;ONTE: How?&nbsp;
<p>COVIELLE: The idea is really funny.&nbsp;
<p>CL&Eacute;ONTE: What is it?&nbsp;
<p>COVIELLE: A short time ago there was a certain masquerade which fits
here better than anything, and that I intend to make part of a prank I
want to play on our fool. It all seems a little phony; but, with him, one
can try anything, there is hardly any reason to be subtle, and he is the
man to play his role marvelously and to swallow easily any fabrication
we want to tell him. I have the actors, I have the costumes ready, just
leave it to me.&nbsp;
<p>CL&Eacute;ONTE: But tell me . . .&nbsp;
<p>COVIELLE: I am going to instruct you in everything. Let's go, there
he is, returning.&nbsp;
<p>SCENE XIV <i>(Monsieur Jourdain, Lackey)</i>
<p>MONSIEUR JOURDAIN: What the devil is this? They have nothing other than
the great lords to reproach me with, and as for me, I see nothing so fine
as to associate with the great lords; there is only honor and civility
among them, and I would have given two fingers of a hand to have been born
a count or a marquis.&nbsp;
<p>LACKEY: Sir, here's the Count, and he has a lady with him.&nbsp;
<p>MONSIEUR JOURDAIN: What! My Goodness, I have some orders to give. Tell
them I'll be back here soon.&nbsp;
<p>SCENE XV <i>(Dorim&egrave;ne, Dorante, Lackey)</i>
<p>LACKEY: Monsieur says that he'll be here very soon.&nbsp;
<p>DORANTE: That's fine.&nbsp;
<p>DORIM&Egrave;NE: I don't know, Dorante; I feel strange allowing you
to bring me to this house where I know no one.&nbsp;
<p>DORANTE: Then where would you like, Madame, for me to express my love
with an entertainment, since you will allow neither your house nor mine
for fear of scandal?&nbsp;
<p>DORIM&Egrave;NE: But you don't mention that every day I am gradually
preparing myself to receive too great proofs of your passion? As good a
defense as I have put up, you wear down my resistance, and you have a polite
persistence which makes me come gently to whatever you like. The frequent
visits began, declarations followed, after them came serenades and amusements
in their train, and presents followed them. I withstood all that, but you
don't give up at all and step by step you are overcoming my resolve. As
for me, I can no longer answer for anything, and I believe that in the
end you will bring me to marriage, which I have so far avoided.&nbsp;
<p>DORANTE: My faith! Madame, you should already have come to it. You are
a widow, and you answer only to yourself. I am my own master and I love
you more than my life. Why shouldn't you be all my happiness from today
onward?&nbsp;
<p>DORIM&Egrave;NE: Goodness! Dorante, for two people to live happily together
both of them need particular qualities; and two of the most reasonable
persons in the world often have trouble making a union satisfactory to
them both.&nbsp;
<p>DORANTE: You're fooling yourself, Madame, to imagine so many difficulties,
and the experience you had with one marriage doesn't determine anything
for others.&nbsp;
<p>DORIM&Egrave;NE: Finally I always come back to this. The expenses that
I see you go to for me disturb me for two reasons: one is that they get
me more involved than I would like; and the other is that I am sure --
meaning no offense -- that you cannot do this without financially inconveniencing
yourself, and I certainly don't want that.&nbsp;
<p>DORANTE: Ah! Madame, they are trifles, and it isn't by that . . .&nbsp;
<p>DORIM&Egrave;NE: I know what I'm talking about; and among other gifts,
the diamond you forced me to take is worth ...&nbsp;
<p>DORANTE: Oh! Madame, mercy, don't put any value on a thing that my love
finds unworthy of you, and allow ... Here's the master of the house.&nbsp;
<p>SCENE XVI <i>(Monsieur Jourdain, Dorim&egrave;ne, Dorante, Lackey)</i>
<p>MONSIEUR JOURDAIN: <i>(After having made two bows, finding himself too</i>
<i>near Dorim&egrave;ne) </i>A little farther, Madame.&nbsp;
<p>DORIM&Egrave;NE: What?&nbsp;
<p>MONSIEUR JOURDAIN: One step, if you please.&nbsp;
<p>DORIM&Egrave;NE: What is it?&nbsp;
<p>MONSIEUR JOURDAIN: Step back a little for the third.&nbsp;
<p>DORANTE: Madame, Monsieur Jourdain is very knowledgeable.&nbsp;
<p>MONSIEUR JOURDAIN: Madame, it is a very great honor to me to be fortunate
enough to be so happy as to have the joy that you should have had the goodness
to accord me the graciousness of doing me the honor of honoring me with
the favor of your presence; and, if I also had the merit to merit a merit
such as yours, and if Heaven . . . envious of my luck . . . should have
accorded me . . . the advantage of seeing me worthy . . . of the . . .&nbsp;
<p>DORANTE: Monsieur Jourdain, that is enough. Madame doesn't like grand
compliments, and she knows that you are a man of wit<i>. (Aside</i> <i>to
Dorim&egrave;ne)</i> As you can see, this good bourgeois is ridiculous
enough in all his manners.&nbsp;
<p>DORIM&Egrave;NE: It isn't difficult to see it.&nbsp;
<p>DORANTE: Madame, he is the best of my friends.&nbsp;
<p>MONSIEUR JOURDAIN: You do me too much honor.&nbsp;
<p>DORANTE: A completely gallant man.&nbsp;
<p>DORIM&Egrave;NE: I have great esteem for him.&nbsp;
<p>MONSIEUR JOURDAIN: I have done nothing yet, Madame, to merit this favor.&nbsp;
<p>DORANTE: <i>(Aside to Monsieur Jourdain)</i> Take care, nonetheless,
to say absolutely nothing to her about the diamond that you gave her.&nbsp;
<p>MONSIEUR JOURDAIN: Can't I even ask her how she likes it?&nbsp;
<p>DORANTE: What? Take care that you don't. That would be loutish of you;
and, to act as a gallant man, you must act as though it were not you who
made her this present. <i>(Aloud)</i> Monsieur Jourdain, Madame, says he
is delighted to see you in his home.&nbsp;
<p>DORIM&Egrave;NE: He honors me greatly.&nbsp;
<p>MONSIEUR JOURDAIN: How obliged I am to you, sir, for speaking thus to
her for me!&nbsp;
<p>DORANTE: I have had frightful trouble getting her to come here.&nbsp;
<p>MONSIEUR JOURDAIN: I don't know how to thank you enough.&nbsp;
<p>DORANTE: He says, Madame, that he finds you the most beautiful woman
in the world.&nbsp;
<p>DORIM&Egrave;NE: He does me a great favor.&nbsp;
<p>MONSIEUR JOURDAIN: Madame, it is you who does the favors, and . . .&nbsp;
<p>DORANTE: Let's consider eating.&nbsp;
<p>LACKEY: Everything is ready, sir.&nbsp;
<p>DORANTE: Come then let us sit at the table. And bring on the musicians.
<i>(Six cooks, who have prepared the feast, dance together</i> <i>and make
the third interlude; after which, they carry in a table</i> <i>covered
with many dishes.)</i>
<p>ACT FOUR&nbsp;
<p>SCENE I <i>(Dorim&egrave;ne, Monsieur Jourdain, Dorante, two Male Musicians,</i>
<i>a Female Musician, Lackeys)</i>
<p>DORIM&Egrave;NE: Why, Dorante, that is really a magnificent repast!&nbsp;
<p>MONSIEUR JOURDAIN: You jest, Madame; I wish it were worthy of being
offered to you. <i>(All sit at the table).</i>
<p>DORANTE: Monsieur Jourdain is right, Madame, to speak so, and he obliges
me by making you so welcome. I agree with him that the repast is not worthy
of you. Since it was I who ordered it, and since I do not have the accomplishments
of our friends in this matter, you do not have here a very sophisticated
meal, and you will find some incongruities in the combinations and some&nbsp;
<p>barbarities of taste. If Damis, our friend, had been involved, everything
would have been according to the rules; everything would have been elegant
and appropriate, and he would not have failed to impress upon you the significance
of all the dishes of the repast, and to make you see his expertise when
it comes to good food; he would have told you about hearth-baked bread,
with its golden brown crust, crunching tenderly between the teeth; of a
smooth, full-bodied wine, fortified with a piquancy not too strong, of
a loin of mutton improved with parsley, of a cut of specially-raised veal
as long as this, white and delicate, and which is like an almond paste
between the teeth, of partridges complimented by a surprisingly flavorful
sauce, and, for his masterpiece, a soup accompanied by a fat young turkey
surrounded by pigeons and crowned with white onions mixed with chicory.
But, as for me, I declare my ignorance; and, as Monsieur Jourdain has said
so well, I only wish that the repast were more worthy of being offered
to you.&nbsp;
<p>DORIM&Egrave;NE: I reply to this compliment only by eating.&nbsp;
<p>MONSIEUR JOURDAIN: Ah! What beautiful hands!&nbsp;
<p>DORIM&Egrave;NE: The hands are mediocre, Monsieur Jourdain; but you
wish to speak of the diamond, which is very beautiful.&nbsp;
<p>MONSIEUR JOURDAIN: Me, Madame? God forbid that I should wish to speak
of it; that would not be acting gallantly, and the diamond is a very small
thing.&nbsp;
<p>DORIM&Egrave;NE: You are very particular.&nbsp;
<p>MONSIEUR JOURDAIN: You are too kind. . .&nbsp;
<p>DORANTE: Let's have some wine for Monsieur Jourdain and for these gentlemen
and ladies who are going to favor us with a drinking song.&nbsp;
<p>DORIM&Egrave;NE: It is marvelous to season good food, by mixing it with
music, and I see I am being admirably entertained.&nbsp;
<p>MONSIEUR JOURDAIN: Madame, it isn't . .&nbsp;
<p>DORANTE: Monsieur Jourdain, let us remain silent for these gentlemen
and ladies; what they have for us to hear is of more value than anything
we could say. <i>(The male singers and the woman</i> <i>singer take the
glasses, sing two drinking songs, and are</i> <i>accompanied by all the
instrumental ensemble.)</i>
<p>FIRST DRINKING SONG&nbsp;
<p><i>Drink a little, Phyllis, to start the glass round.</i> <i>Ah! A glass
in your hands is charmingly agreeable!</i> <i>You and the wine arm each
other,</i> <i>And I redouble my love for you both</i> <i>Let us three --
wine, you, and me --</i> <i>Swear, my beauty, to an eternal passion.</i>
<p><i>Your lips are made yet more attractive by wetting with wine!</i>
<i>Ah! The one and the other inspire me with desire</i> <i>And both you
and it intoxicate me</i> <i>Let us three -- wine, you, and me --</i> <i>Swear,
my beauty, to an eternal passion.</i>&nbsp;<i>&nbsp;</i>
<p>SECOND DRINKING SONG&nbsp;
<p><i>Let us drink, dear friends, let us drink;</i> <i>Time that flies
beckons us to it!</i> <i>Let us profit from life as much as we can.</i>
<i>Once we pass under the black shadow,</i> <i>Goodbye to wine, our loves;</i>
<i>Let us drink while we can,</i> <i>One cannot drink forever.</i>
<p><i>Let fools speculate</i> <i>On the true happiness of life.</i> <i>Our
philosophy</i> <i>Puts it among the wine-pots.</i> <i>Possessions, knowledge
and glory</i> <i>Hardly make us forget troubling cares,</i> <i>And it is
only with good drink</i> <i>That one can be happy.</i>
<p><i>Come on then, wine for all, pour, boys, pour,</i> <i>Pour, keep on
pouring, until they say, "Enough."</i>
<p>DORIM&Egrave;NE: I don't believe it's possible to sing better, and that
is positively beautiful.&nbsp;
<p>MONSIEUR JOURDAIN: I see something here, Madame, yet more beautiful.&nbsp;
<p>DORIM&Egrave;NE: Aha! Monsieur Jourdain is more gallant than I thought.&nbsp;
<p>DORANTE: What! Madame, what did you take Monsieur Jourdain for?&nbsp;
<p>MONSIEUR JOURDAIN: I would like for her to take me at my word.&nbsp;
<p>DORIM&Egrave;NE: Again!&nbsp;
<p>DORANTE: You don't know him.&nbsp;
<p>MONSIEUR JOURDAIN: She may know me whenever it pleases her.&nbsp;
<p>DORIM&Egrave;NE: Oh! I am overwhelmed.&nbsp;
<p>DORANTE: He is a man who is always ready with a repartee. But don't
you see that Monsieur Jourdain, Madame, eats all the pieces of food you
have touched?&nbsp;
<p>DORIM&Egrave;NE: I am captivated by Monsieur Jourdain . . .&nbsp;
<p>MONSIEUR JOURDAIN: If I could captivate your heart, I would be . . .&nbsp;
<p>SCENE II <i>(Madame Jourdain, Monsieur Jourdain, Dorim&egrave;ne, Dorante,</i>
<i>Musicians, Lackeys)</i>
<p>MADAME JOURDAIN: Aha! I find good company here, and I see that I was
not expected. Was it for this pretty affair, Monsieur Husband, that you
were so eager to send me to dinner at my sister's? I just saw stage decorations
downstairs, and here I see a banquet fit for a wedding. That is how you
spend your money, and this is how you entertain the ladies in my absence,
and you give them music and entertainment while sending me on my way.&nbsp;
<p>DORANTE: What are you saying, Madame Jourdain? And what fantasies are
you getting into your head that your husband spends his money, and that
it is he who is giving this entertainment to Madame? Please know that it
is I; that he only lends me his house, and that you ought to think more
about the things you say.&nbsp;
<p>MONSIEUR JOURDAIN: Yes, what impertinence. It is the Count who presents
all this to Madame, who is a person of quality. He does me the honor of
using my house and of wishing me to be with him.&nbsp;
<p>MADAME JOURDAIN: All that's nonsense. I know what I know.&nbsp;
<p>DORANTE: Come Madame Jourdain, put on better glasses.&nbsp;
<p>MADAME JOURDAIN: I don't need glasses, sir, I see well enough; I have
had suspicions for a long time, and I'm not a fool. This is very low of
you, of a great lord, to lend a hand as you do to the follies of my husband.
And you, Madame, for a great lady, it is neither fine nor honest of you
to cause dissension in a household and to allow my husband to be in love
with you.&nbsp;
<p>DORIM&Egrave;NE: What is she trying to say with all this? Goodness Dorante!
You have outdone yourself by exposing me to the absurd fantasies of this
ridiculous woman.&nbsp;
<p>DORANTE: Madame, wait! Madame, where are you going?&nbsp;
<p>MONSIEUR JOURDAIN: Madame! Monsieur Count, make excuses to her and try
to bring her back. Ah! You impertinent creature, this is a fine way to
act! You come and insult me in front of everybody, and you drive from me
people of quality.&nbsp;
<p>MADAME JOURDAIN: I laugh at their quality.&nbsp;
<p>MONSIEUR JOURDAIN: I don't know who holds me back, evil creature, from
breaking your head with the remains of the repast you came to disrupt.
<i>(The table is removed).</i>
<p>MADAME JOURDAIN: <i>(Leaving)</i> I'm not concerned. These are my rights
that I defend, and I'll have all wives on my side.&nbsp;
<p>MONSIEUR JOURDAIN: You do well to avoid my rage. She arrived very inopportunely.
I was in the mood to say pretty things, and I had never felt so witty.
What's that?&nbsp;
<p>SCENE III <i>(Covielle, disguised; Monsieur Jourdain, Lackey)</i>
<p>COVIELLE: Sir, I don't know if I have the honor to be known to you?&nbsp;
<p>MONSIEUR JOURDAIN: No, sir.&nbsp;
<p>COVIELLE: I saw you when you were no taller than that.&nbsp;
<p>MONSIEUR JOURDAIN: Me?&nbsp;
<p>COVIELLE: Yes. You were the most beautiful child in the world, and all
the ladies took you in their arms to kiss you.&nbsp;
<p>MONSIEUR JOURDAIN: To kiss me?&nbsp;
<p>COVIELLE: Yes, I was a great friend of your late father.&nbsp;
<p>MONSIEUR JOURDAIN: Of my late father?&nbsp;
<p>COVIELLE: Yes. He was a very honorable gentleman.&nbsp;
<p>MONSIEUR JOURDAIN: What did you say?&nbsp;
<p>COVIELLE: I said that he was a very honorable gentleman.&nbsp;
<p>MONSIEUR JOURDAIN: My father?&nbsp;
<p>COVIELLE: Yes.&nbsp;
<p>MONSIEUR JOURDAIN: You knew him very well?&nbsp;
<p>COVIELLE: Assuredly.&nbsp;
<p>MONSIEUR JOURDAIN: And you knew him as a gentleman?&nbsp;
<p>COVIELLE: Without doubt.&nbsp;
<p>MONSIEUR JOURDAIN: Then I don't know what is going on!&nbsp;
<p>COVIELLE: What?&nbsp;
<p>MONSIEUR JOURDAIN: There are some fools who want to tell me that he
was a tradesman.&nbsp;
<p>COVIELLE: Him, a tradesman! It's pure slander, he never was one. All
that he did was to be very obliging, very ready to help; and, since he
was a connoisseur in cloth, he went all over to choose them, had them brought
to his house, and gave them to his friends for money.&nbsp;
<p>MONSIEUR JOURDAIN: I'm delighted to know you, so you can testify to
the fact that my father was a gentleman.&nbsp;
<p>COVIELLE: I'll attest to it before all the world.&nbsp;
<p>MONSIEUR JOURDAIN: You'll oblige me. What business brings you here?&nbsp;
<p>COVIELLE: Since knowing your late father, honorable gentleman, as I
told you, I have traveled through all the world.&nbsp;
<p>MONSIEUR JOURDAIN: Through all the world!&nbsp;
<p>COVIELLE: Yes.&nbsp;
<p>MONSIEUR JOURDAIN: I imagine it's a long way from here to there.&nbsp;
<p>COVIELLE: Assuredly. I returned from all my long voyages only four days
ago; and because of the interest I take in all that concerns you, I come
to announce to you the best news in the world.&nbsp;
<p>MONSIEUR JOURDAIN: What?&nbsp;
<p>COVIELLE: You know that the son of the Grand Turk is here?&nbsp;
<p>MONSIEUR JOURDAIN: Me? No.&nbsp;
<p>COVIELLE: What! He has a very magnificent retinue; everybody goes to
see it, and he has been received in this country as an important lord.&nbsp;
<p>MONSIEUR JOURDAIN: By my faith! I didn't know that.&nbsp;
<p>COVIELLE: The advantage to you in this is that he is in love with your
daughter.&nbsp;
<p>MONSIEUR JOURDAIN: The son of the Grand Turk?&nbsp;
<p>COVIELLE: Yes. And he wants to be your son-in-law.&nbsp;
<p>MONSIEUR JOURDAIN: My son-in-law, the son of the Grand Turk?&nbsp;
<p>COVIELLE: The son of the Grand Turk your son-in-law. As I went to see
him, and as I perfectly understand his language, he conversed with me;
and, after some other discourse, he said to me<i>, "Acciam</i> <i>croc
soler ouch alla moustaph gidelum amanahem varahini oussere</i> <i>carbulath,"</i>
that is to say, "Haven't you seen a beautiful young person who is the daughter
of Monsieur Jourdain, gentleman of Paris?"&nbsp;
<p>MONSIEUR JOURDAIN: The son of the Grand Turk said that of me?&nbsp;
<p>COVIELLE: Yes. Inasmuch as I told him in reply that I knew you particularly
well and that I had seen your daughter: <i>"Ah!"</i> he said to me, <i>"marababa
sahem;"</i> Which is to say, "Ah, how I am enamored of her!"&nbsp;
<p>MONSIEUR JOURDAIN<i>: "Marababa sahem"</i> means "Ah, how I am enamored
of her"?&nbsp;
<p>COVIELLE: Yes.&nbsp;
<p>MONSIEUR JOURDAIN: By my faith, you do well to tell me, since, as for
me, I would never have believed that <i>"marababa sahem"</i> could have
meant to say "Oh, how I am enamored of her!" What an admirable language
Turkish is!&nbsp;
<p>COVIELLE: More admirable than one can believe. Do you know what <i>Cacaracamouchen</i>
means?&nbsp;
<p>MONSIEUR JOURDAIN: <i>Cacaracamouchen?</i> No.&nbsp;
<p>COVIELLE: It means: It means, "My dear soul."&nbsp;
<p>MONSIEUR JOURDAIN: <i>Cacaracamouchen</i> means "My dear soul?"&nbsp;
<p>COVIELLE: Yes.&nbsp;
<p>MONSIEUR JOURDAIN: That's marvelous! <i>Cacaracamouchen</i>, my dear
soul. Who would have thought? I'm dumbfounded.&nbsp;
<p>COVIELLE: Finally, to complete my assignment, he comes to ask for your
daughter in marriage; and in order to have a father-in-law who should be
worthy of him, he wants to make you a <i>Mamamouchi</i>, which is a certain
high rank in his country.&nbsp;
<p>MONSIEUR JOURDAIN: <i>Mamamouchi?'</i>
<p>COVIELLE: Yes, <i>Mamamouchi</i>; that is to say, in our language, a
Paladin. Paladin is one of those ancient . . . Well, Paladin! There is
none nobler than that in the world, and you will be equal to the greatest
lords of the earth.&nbsp;
<p>MONSIEUR JOURDAIN: The son of the Grand Turk honors me greatly. Please
take me to him in order to express my thanks.&nbsp;
<p>COVIELLE: What! He is going to come here.&nbsp;
<p>MONSIEUR JOURDAIN: He's coming here?&nbsp;
<p>COVIELLE: Yes. And he is bringing everything for the ceremony of bestowing
your rank.&nbsp;
<p>MONSIEUR JOURDAIN: That seems very quick.&nbsp;
<p>COVIELLE: His love can suffer no delay.&nbsp;
<p>MONSIEUR JOURDAIN: All that embarrasses me here is that my daughter
is a stubborn one who has gotten into her head a certain Cleonte, and she
swears she'll marry no one but him.&nbsp;
<p>COVIELLE: She'll change her mind when she sees the son of the Grand
Turk; and then there is a remarkable coincidence here, it is that the son
of the Grand Turk resembles this Cl&eacute;onte very closely. I just saw
him, someone showed him to me; and the love she has for the one can easily
pass to the other, and . . . I hear him coming. There he is.&nbsp;
<p>SCENE IV <i>(Cl&eacute;onte, as a Turk, with three Pages carrying his
outer</i> <i>clothes, Monsieur Jourdain, Covielle, disguised.)</i>
<p>CL&Eacute;ONTE: <i>Ambousahim oqui boraf, Iordina, salamalequi.</i>
<p>COVIELLE: That is to say: "Monsieur Jourdain, may your heart be all
the year like a flowering rosebush." This is the way of speaking politely
in those countries.&nbsp;
<p>MONSIEUR JOURDAIN: I am the most humble servant of His Turkish Highness.&nbsp;
<p>COVIELLE:<i> Carigar camboto oustin moraf .</i>
<p>CL&Eacute;ONTE: <i>Oustin yoc catamalequi basum base alla moran.</i>
<p>COVIELLE: He says: "Heaven gives you the strength of lions and the wisdom
of serpents."&nbsp;
<p>MONSIEUR JOURDAIN: His Turkish Highness honors me too much, and I wish
him all sorts of good fortune.&nbsp;
<p>COVIELLE: <i>Ossa binamen sadoc babally oracaf ouram.</i>
<p>CL&Eacute;ONTE: <i>Bel-men</i>.&nbsp;
<p>COVIELLE: He says that you should go with him quickly to prepare yourself
for the ceremony; then you can see your daughter and conclude the marriage.&nbsp;
<p>MONSIEUR JOURDAIN: So many things in two words?&nbsp;
<p>COVIELLE: Yes; the Turkish language is like that, it says much in few
words. Go quickly where he wants.&nbsp;
<p>SCENE V <i>(Dorante, Covielle)</i>
<p>COVIELLE: Ha, ha, ha! My faith, that was hilarious. What a dupe! If
he had learned his role by heart, he could not have played it better. Ah!
Ah! Excuse me, Sir, Wouldn't you like to help us here in an affair that
is taking place.&nbsp;
<p>DORANTE: Ah! Ah! Covielle, who would have recognized you? How you are
made up!&nbsp;
<p>COVIELLE: You see, ha, ha!&nbsp;
<p>DORANTE: What are you laughing at?&nbsp;
<p>COVIELLE: At a thing, Sir, that well deserves it.&nbsp;
<p>DORANTE: What?&nbsp;
<p>COVIELLE: I'll give you many chances, Sir, to guess the stratagem we
are using on Monsieur Jourdain to get him to give his daughter to my master.&nbsp;
<p>DORANTE: I can't begin to guess the stratagem, but I guess it will not
fail in its effect, since you are undertaking it.&nbsp;
<p>COVIELLE: I see, Sir, that you know me too well.&nbsp;
<p>DORANTE: Tell me what it is.&nbsp;
<p>COVIELLE: Come over here a little to make room for what I see coming.
You can see part of the story, while I tell you the rest.&nbsp;
<p><i>(The Turkish ceremony for ennobling Monsieur Jourdain is performed</i>
<i>in dance and music, and comprises the Fourth Interlude.) [The</i> <i>ceremony
is a burlesque full of comic gibberish in pseudo-Turkish</i> <i>and nonsensical
French, in which Monsieur Jourdain is made to appear</i> <i>ludicrous and
during which he is outfitted with an extravagant costume,</i> <i>turban,
and sword.]</i>&nbsp;<i>&nbsp;</i>&nbsp;<i>&nbsp;</i>
<p>ACT FIVE&nbsp;
<p>SCENE I <i>(Madame Jourdaine, Monsieur Jourdain)</i>
<p>MADAME JOURDAIN: Ah, My God! Mercy! What is all of this? What a spectacle!
Are you dressed for a masquerade, and is this a time to go masked? Speak
then, what is this? Who has bundled you up like that?&nbsp;
<p>MONSIEUR JOURDAIN: See the impertinent woman, to speak in this way to
a <i>Mamamouchi</i>!&nbsp;
<p>MADAME JOURDAIN: How's that?&nbsp;
<p>MONSIEUR JOURDAIN: Yes, you must show me respect now, as I've just been
made a <i>Mamamouchi</i>.&nbsp;
<p>MADAME JOURDAIN: What are you trying to say with your <i>Mamamouchi</i>?&nbsp;
<p>MONSIEUR JOURDAIN: <i>Mamamouchi</i>, I tell you. I'm a Mamamouchi.&nbsp;
<p>MADAME JOURDAIN: What animal is that?&nbsp;
<p>MONSIEUR JOURDAIN: <i>Mamamouchi</i>, that is to say, in our language,
Paladin.&nbsp;
<p>MADAME JOURDAIN: Baladin! Are you of an age to dance in ballets?&nbsp;
<p>MONSIEUR JOURDAIN: What an ignorant woman! I said Paladin. It's a dignity
which has just been bestowed upon me in a ceremony.&nbsp;
<p>MADAME JOURDAIN: What ceremony then?&nbsp;
<p>MONSIEUR JOURDAIN: <i>Mahometa-per-Jordina</i>.&nbsp;
<p>MADAME JOURDAIN: What does that mean?&nbsp;
<p>MONSIEUR JOURDAIN: <i>Jordina</i>, that is to say, Jourdain.&nbsp;
<p>MADAME JOURDAIN: Very well, what of Jourdain?&nbsp;
<p>MONSIEUR JOURDAIN: <i>Voler far un Paladina de Jordina</i>.&nbsp;
<p>MADAME JOURDAIN: What?&nbsp;
<p>MONSIEUR JOURDAIN: <i>Dar turbanta con galera</i>.&nbsp;
<p>MADAME JOURDAIN: Which is to say what?&nbsp;
<p>MONSIEUR JOURDAIN: <i>Per deffender Palestina</i>.&nbsp;
<p>MADAME JOURDAIN: What are you trying to say?&nbsp;
<p>MONSIEUR JOURDAIN: <i>Dara, dara, bastonnara</i>.&nbsp;
<p>MADAME JOURDAIN: What jargon is this?&nbsp;
<p>MONSIEUR JOURDAIN: <i>Non tener honta, questa star l'ultima affronta</i>.&nbsp;
<p>MADAME JOURDAIN: What in the world is all that?&nbsp;
<p>MONSIEUR JOURDAIN: <i>(Dancing and singing). Hou la ba, Ba la chou,
ba</i> <i>la ba, ba la da.</i>
<p>MADAME JOURDAIN: Alas! Oh Lord, my husband has gone mad.&nbsp;
<p>MONSIEUR JOURDAIN: <i>(Leaving)</i> Peace, insolent woman! Show respect
to the Monsieur Mamamouchi.&nbsp;
<p>MADAME JOURDAIN: Has he lost his mind? I must hurry to stop him from
going out. Ah! Ah! This is the last straw! I see nothing but shame on all
sides.&nbsp;
<p><i>(She leaves.)</i>&nbsp;<i>&nbsp;</i>
<p>SCENE II <i>(Dorante, Dorim&egrave;ne)</i>
<p>DORANTE: Yes, Madame, you are going to see the most amusing thing imaginable.
I don't believe it would be possible to find in all the world another man
as crazy as that one is. And then too, Madame, we must try to help Cl&eacute;onte's
plan by supporting his masquerade. He's a very gallant man and deserves
our help.&nbsp;
<p>DORIM&Egrave;NE: I think highly of him and he deserves happiness.&nbsp;
<p>DORANTE: Besides that, we have here, Madame, another ballet performance
that we shouldn't miss, and I want to see if my idea will succeed.&nbsp;
<p>DORIM&Egrave;NE: I saw magnificent preparations, and I can no longer
permit this Dorante. Yes, I finally want to end your extravagances and
to stop all these expenses that I see you go to for me, I have decided
to marry you right away. This is the truth of it, that all these sorts
of things end with marriage, as you know.&nbsp;
<p>DORANTE: Ah! Madame, is it possible that you should have taken such
a sweet decision in my favor?&nbsp;
<p>DORIM&Egrave;NE: It is only to impede you from ruining yourself; without
that, I see very well that before long you would not have a penny.&nbsp;
<p>DORANTE: How obliged I am to you, Madame, for the care you have to conserve
my money! It is entirely yours, as well as my heart, and you may use them
in whatever fashion you please.&nbsp;
<p>DORIM&Egrave;NE: I'll make use of them both. But here is your man: his
costume is wonderful.&nbsp;
<p>SCENE III <i>(Monsieur Jourdain, Dorante, Dorim&egrave;ne)</i>
<p>DORANTE: Sir, we come to pay homage, Madame and I, to your new dignity,
and to rejoice with you at the marriage between your daughter and the son
of the Grand Turk.&nbsp;
<p>MONSIEUR JOURDAIN: <i>(After bowing in the Turkish way)</i> Sir, I wish
you the strength of serpents and the wisdom of lions.&nbsp;
<p>DORIMENE,: I was very glad, Sir, to be among the first to come to congratulate
you upon rising to such a high degree of honor.&nbsp;
<p>MONSIEUR JOURDAIN: Madame, I wish your rosebush to flower all year long;
I am infinitely obliged to you for taking part in the honors bestowed upon
me; and I am very happy to see you returned here, so I can make very humble
excuses for the ridiculous behavior of my wife.&nbsp;
<p>DORIM&Egrave;NE: That's nothing. I excuse her jumping to conclusions:
your heart must be precious to her, and it isn't strange that the possession
of such a man as you should inspire some jealousy.&nbsp;
<p>MONSIEUR JOURDAIN: The possession of my heart is a thing that has been
entirely gained by you.&nbsp;
<p>DORANTE: You see, Madame, that Monsieur Jourdain is not one of those
men that good fortune blinds, and that he still knows, even in his glory,
how to recognize his friends.&nbsp;
<p>DORIM&Egrave;NE: It is the mark of a completely generous soul.&nbsp;
<p>DORANTE: Where then is His Turkish Highness? We want, as your friends,
to pay him our respects.&nbsp;
<p>MONSIEUR JOURDAIN: There he comes, and I have sent for my daughter in
order to give him her hand.&nbsp;
<p>SCENE IV <i>(Cl&eacute;onte, Covielle, Monsieur Jourdain, etc.)</i>
<p>DORANTE: Sir, we come to bow to Your Highness as friends of the gentleman
who is your father-in-law, and to assure you with respect of our very humble
services.&nbsp;
<p>MONSIEUR JOURDAIN: Where's the interpreter to tell him who you are and
to make him understand what you say? You will see that he will reply, and
that he speaks Turkish marvelously. Hey there! Where the devil has he gone?
<i>(To Cl&eacute;onte). Strouf, strif, strof, straf</i>. The gentleman
is a <i>grande Segnore, grande Segnore, grande Segnore</i>. And Madame
is a <i>Dama granda Dama, granda</i>. Ahi! He, Monsieur, he French <i>Mamamauchi</i>,
and Madame also French <i>Mamamouchie</i>. I can't say it more clearly.
Good, here's the interpreter. Where are you going? We won't know how to
say anything without you. Tell him, that Monsieur and Madame are persons
of high rank, who have come to pay their respects to him, as my friends,
and to assure him of their services. You'll see how he will reply.&nbsp;
<p>COVIELLE: <i>Alabala crociam acci boram alabamen</i>.&nbsp;
<p>CL&Eacute;ONTE: <i>Catalequi tubal ourin soter amalouchan</i>.&nbsp;
<p>MONSIEUR JOURDAIN: See?&nbsp;
<p>COVIELLE: He says that the rain of prosperity should water the garden
of your family in all seasons.&nbsp;
<p>MONSIEUR JOURDAIN: I told you that he speaks Turkish!&nbsp;
<p>DORANTE: That's wonderful.&nbsp;
<p>SCENE V <i>(Lucile, Monsieur Jourdain, Dorante, Dorim&egrave;ne, etc.)</i>
<p>MONSIEUR JOURDAIN: Come, my daughter; come here and give your hand to
the gentleman who does you the honor of asking for you in marriage.&nbsp;
<p>LUCILE: What! Father, look at you! Are you playing in a comedy?&nbsp;
<p>MONSIEUR JOURDAIN: No, no, this is not a comedy, it's a very serious
matter, and as full of honor for you as possible. There is the husband
I give you.&nbsp;
<p>LUCILE: To me, father?&nbsp;
<p>MONSIEUR JOURDAIN: Yes, to you. Come, put your hand in his, and give
thanks to Heaven for your happiness.&nbsp;
<p>LUCILE: I have absolutely no wish to marry.&nbsp;
<p>MONSIEUR JOURDAIN: I wish it, I, who am your father.&nbsp;
<p>LUCILLE: I'll do nothing of the sort.&nbsp;
<p>MONSIEUR JOURDAIN: Ah! What a nuisance! Come, I tell you. Give your
hand.&nbsp;
<p>LUCILE: No, my father, I told you, there is no power on earth that can
make me take any husband other than Cl&eacute;onte. And I will go to extreme
measures rather than . . . <i>(Recognizes Cl&eacute;onte)</i> It is true
that you are my father; I owe you complete obedience; and it is for you
to dispose of me according to your wishes.&nbsp;
<p>MONSIEUR JOURDAIN: Ah! I am delighted to see you return so promptly
to your duty, and it pleases me to have an obedient daughter.&nbsp;
<p>SCENE VI <i>(Madame Jourdain, Monsieur Jourdain, Cl&eacute;onte, etc.)</i>
<p>MADAME JOURDAIN: What now? What's this? They say that you want to give
your daughter in marriage to a someone in a Carnival costume?&nbsp;
<p>MONSIEUR JOURDAIN: Will you be quiet, impertinent woman? You always
throw your absurdities into everything, and there's no teaching you to
be reasonable.&nbsp;
<p>MADAME JOURDAIN: It's you that there is no way of making wise, and you
go from folly to folly. What is your plan, and what do you want to do with
this assemblage of people?&nbsp;
<p>MONSIEUR JOURDAIN: I want to marry our daughter to the son of the Grand
Turk.&nbsp;
<p>MADAME JOURDAIN: To the son of the Grand Turk?&nbsp;
<p>MONSIEUR JOURDAIN: Yes. Greet him through the interpreter there.&nbsp;
<p>MADAME JOURDAIN: I don't need an interpreter; and I'll tell him straight
out myself, to his face, that there is no way he will have my daughter.&nbsp;
<p>MONSIEUR JOURDAIN: I ask again, will you be quiet?&nbsp;
<p>DORANTE: What! Madame Jourdain, do you oppose such good fortune as that?
You refuse His Turkish Highness as your son-in-law?&nbsp;
<p>MADAME JOURDAIN: My Goodness, Sir, mind your own business.&nbsp;
<p>DORIM&Egrave;NE: It's a great glory, which is not to be rejected.&nbsp;
<p>MADAME JOURDAIN: Madame, I beg you also not to concern yourself with
what does not affect you.&nbsp;
<p>DORANTE: It's the friendship we have for you that makes us involve ourselves
in your interest.&nbsp;
<p>MADAME JOURDAIN: I can get along quite well without your friendship.&nbsp;
<p>DORANTE: Your daughter here agrees to the wishes of her father.&nbsp;
<p>MADAME JOURDAIN: My daughter consents to marry a Turk?&nbsp;
<p>DORANTE: Without doubt.&nbsp;
<p>MADAME JOURDAIN: She can forget Cl&eacute;onte?&nbsp;
<p>DORANTE: What wouldn't one do to be a great lady?&nbsp;
<p>MADAME JOURDAIN: I would strangle her with my own hands if she did something
like that.&nbsp;
<p>MONSIEUR JOURDAIN: That is just so much talk. I tell you, this marriage
shall take place.&nbsp;
<p>MADAME JOURDAIN: And I say there is no way that it will happen.&nbsp;
<p>MONSIEUR JOURDAIN: Oh, what a row!&nbsp;
<p>LUCILE: Mother!&nbsp;
<p>MADAME JOURDAIN: Go away, you are a hussy.&nbsp;
<p>MONSIEUR JOURDAIN: What! You quarrel with her for obeying me?&nbsp;
<p>MADAME JOURDAIN: Yes. She is mine as much as yours.&nbsp;
<p>COVIELLE: Madame!&nbsp;
<p>MADAME JOURDAIN: What do you want to tell me?&nbsp;
<p>COVIELLE: A word.&nbsp;
<p>MADAME JOURDAIN: I want nothing to do with your word.&nbsp;
<p>COVIELLE: <i>(To Monsieur Jourdain)</i> Sir, if she will hear a word
in private, I promise you to make her consent to what you want.&nbsp;
<p>MADAME JOURDAIN: I will never consent to It.&nbsp;
<p>COVIELLE: Only listen to me.&nbsp;
<p>MADAME JOURDAIN: No.&nbsp;
<p>MONSIEUR JOURDAIN: Listen to him.&nbsp;
<p>MADAME JOURDAIN: No, I don't want to listen to him.&nbsp;
<p>MONSIEUR JOURDAIN: He is going tell you . . .&nbsp;
<p>MADAME JOURDAIN: I don't want him to tell me anything whatsoever.&nbsp;
<p>MONSIEUR JOURDAIN: There is the great stubbornness of a woman! How can
it hurt you to listen to him?&nbsp;
<p>COVIELLE: Just listen to me; after that you can do as you please.&nbsp;
<p>MADAME JOURDAIN: Alright! What?&nbsp;
<p>COVIELLE: <i>(Aside to Madame Jourdain)</i> For an hour, Madame, we've
been signaling to you. Don't you see that all this is done only to accommodate
ourselves to the fantasies of your husband, that we are fooling him under
this disguise and that it is Cl&eacute;onte himself who is the son of the
Grand Turk?&nbsp;
<p>MADAME JOURDAIN: Ah! Ah!&nbsp;
<p>COVIELLE: And I, Covielle, am the interpreter?&nbsp;
<p>MADAME JOURDAIN: Ah! If this is the case then, I surrender.&nbsp;
<p>COVIELLE: Don't let on.&nbsp;
<p>MADAME JOURDAIN: Yes, it's done, I agree to the marriage.&nbsp;
<p>MONSIEUR JOURDAIN: Ah! Now everyone's reasonable. You didn't want to
hear it. I knew he would explain to you what it means to be the son of
the Grand Turk.&nbsp;
<p>MADAME JOURDAIN: He explained it to me very well, and I am satisfied.
Let us send for a notary.&nbsp;
<p>DORANTE: This is very well said. And finally, Madame Jourdain, in order
to relieve your mind completely, and that you may lose today all the jealousy
that you may have conceived of your husband, we shall have the same notary
marry us, Madame and me.&nbsp;
<p>MADAME JOURDAIN: I agree to that also.&nbsp;
<p>MONSIEUR JOURDAIN: Is this to make her believe our story?&nbsp;
<p>DORANTE: <i>(Aside to Monsieur Jourdain)</i> It is necessary to amuse
her with this pretence.&nbsp;
<p>MONSIEUR JOURDAIN: Good, good! Someone go for the notary.&nbsp;
<p>DORANTE: While we wait for him to come and while he draws up the contracts,
let us see our ballet, and divert His Turkish Highness with it.&nbsp;
<p>MONSIEUR JOURDAIN: That is very well advised. Come, let's take our places.&nbsp;
<p>MADAME JOURDAIN: And Nicole?&nbsp;
<p>MONSIEUR JOURDAIN: I give her to the interpreter; and my wife to whoever
wants her.&nbsp;
<p>COVIELLE: Sir, I thank you. <i>(Aside)</i> If one can find a greater
fool, I'll go to Rome to tell it.&nbsp;<i>&nbsp;</i>
<p><i>(The comedy ends with a ballet.)</i>

<br>End of the Project Gutenberg Etext of The Middle Class Gentleman,
by Moliere

</body>
</html>