<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>Nộp bài tập thực hành NLLTHĐT - Lớp CSE224_001 by Ngoc Ha Nguyen</title>
      <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza</link>
      <description>Quy định đặt tên tệp: STT-baiN.cpp (Ví dụ 1-bai3.cpp)</description>
      <language>en-us</language>
      <pubDate>2021-11-29 23:58:10 UTC</pubDate>
      <lastBuildDate>2023-05-09 12:22:37 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url></url>
      </image>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2520723541</link>
         <description><![CDATA[<div>#include &lt;iostream&gt;<br>#include &lt;vector&gt;<br>#include &lt;string&gt;<br>#include &lt;algorithm&gt;<br><br>using namespace std;<br><br>class Student {<br>public:<br>&nbsp; &nbsp; string MaSV;<br>&nbsp; &nbsp; string HotenSV;<br>&nbsp; &nbsp; string Lop;<br>&nbsp; &nbsp; double Diem;<br><br>&nbsp; &nbsp; Student(string maSV, string hotenSV, string lop, double diem)<br>&nbsp; &nbsp; &nbsp; &nbsp; : MaSV(maSV), HotenSV(hotenSV), Lop(lop), Diem(diem) {}<br>};<br><br>class StudentManagement {<br>private:<br>&nbsp; &nbsp; vector&lt;Student&gt; students;<br><br>public:<br>&nbsp; &nbsp; void addStudent(const Student&amp; student) {<br>&nbsp; &nbsp; &nbsp; &nbsp; students.push_back(student);<br>&nbsp; &nbsp; }<br><br>&nbsp; &nbsp; void deleteStudentByMaSV(const string&amp; maSV) {<br>&nbsp; &nbsp; &nbsp; &nbsp; students.erase(remove_if(students.begin(), students.end(),<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;[&amp;](const Student&amp; student) { return student.MaSV == maSV; }),<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;students.end());<br>&nbsp; &nbsp; }<br><br>&nbsp; &nbsp; Student* findStudentByMaSV(const string&amp; maSV) {<br>&nbsp; &nbsp; &nbsp; &nbsp; auto it = find_if(students.begin(), students.end(),<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [&amp;](const Student&amp; student) { return student.MaSV == maSV; });<br><br>&nbsp; &nbsp; &nbsp; &nbsp; return it != students.end() ? &amp;(*it) : nullptr;<br>&nbsp; &nbsp; }<br><br>&nbsp; &nbsp; vector&lt;Student&gt; listStudentsByClass(const string&amp; lop) {<br>&nbsp; &nbsp; &nbsp; &nbsp; vector&lt;Student&gt; result;<br>&nbsp; &nbsp; &nbsp; &nbsp; for (const Student&amp; student : students) {<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (student.Lop == lop) {<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; result.push_back(student);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br>&nbsp; &nbsp; &nbsp; &nbsp; }<br>&nbsp; &nbsp; &nbsp; &nbsp; return result;<br>&nbsp; &nbsp; }<br><br>&nbsp; &nbsp; void sortStudentsByIncreasingScore() {<br>&nbsp; &nbsp; &nbsp; &nbsp; sort(students.begin(), students.end(),<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;[](const Student&amp; a, const Student&amp; b) { return a.Diem &lt; b.Diem; });<br>&nbsp; &nbsp; }<br>};<br><br>void displayMenu() {<br>&nbsp; &nbsp; cout &lt;&lt; "1. Add new student\n"<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;&lt; "2. Delete student from the list\n"<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;&lt; "3. Find student by MaSV\n"<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;&lt; "4. List students by class\n"<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;&lt; "5. Sort student list by increasing score\n"<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;&lt; "6. Exit\n";<br>}<br><br>int main() {<br>&nbsp; &nbsp; StudentManagement studentManagement;<br>&nbsp; &nbsp; int choice;<br><br>&nbsp; &nbsp; do {<br>&nbsp; &nbsp; &nbsp; &nbsp; displayMenu();<br>&nbsp; &nbsp; &nbsp; &nbsp; cout &lt;&lt; "Enter your choice: ";<br>&nbsp; &nbsp; &nbsp; &nbsp; cin &gt;&gt; choice;<br><br>&nbsp; &nbsp; &nbsp; &nbsp; switch (choice) {<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; case 1: {<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; string maSV, hotenSV, lop;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; double diem;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cout &lt;&lt; "Enter MaSV: ";<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cin &gt;&gt; maSV;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cout &lt;&lt; "Enter HotenSV: ";<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cin.ignore();<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; getline(cin, hotenSV);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cout &lt;&lt; "Enter Lop: ";<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cin &gt;&gt; lop;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cout &lt;&lt; "Enter Diem: ";<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cin &gt;&gt; diem;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; studentManagement.addStudent(Student(maSV, hotenSV, lop, diem));<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; case 2: {<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; string maSV;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cout &lt;&lt; "Enter MaSV: ";<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cin &gt;&gt; maSV;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; studentManagement.deleteStudentByMaSV(maSV);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; case 3: {<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; string maSV;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cout &lt;&lt; "Enter MaSV: ";<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cin &gt;&gt; maSV;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Student* student = studentManagement.findStudentByMaSV(maSV);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (student) {<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cout &lt;&lt; "MaSV: " &lt;&lt; student-&gt;MaSV &lt;&lt; ", HotenSV: " &lt;&lt; student-&gt;HotenSV<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;&lt; ", Lop: " &lt;&lt; student-&gt;Lop &lt;&lt; ", Diem: " &lt;&lt; student-&gt;Diem &lt;&lt; '\n';<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; } else {<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cout &lt;&lt; "Student not found\n";<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; case 4: {<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; string lop;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cout &lt;&lt; "Enter Lop: ";<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cin &gt;&gt; lop;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; vector&lt;Student&gt; studentsByClass = studentManagement.listStudentsByClass(lop);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; for (const Student&amp; student : studentsByClass) {<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cout &lt;&lt; "MaSV: " &lt;&lt; student.MaSV &lt;&lt; ", HotenSV: " &lt;&lt; student.HotenSV<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;&lt; ", Lop: " &lt;&lt; student.Lop &lt;&lt; ", Diem: " &lt;&lt; student.Diem &lt;&lt; '\n';<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; case 5: {<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; studentManagement.sortStudentsByIncreasingScore();<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cout &lt;&lt; "Student list sorted by increasing score.\n";<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; case 6: {<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cout &lt;&lt; "Exiting the program.\n";<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; default: {<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cout &lt;&lt; "Invalid choice. Please try again.\n";<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br>&nbsp; &nbsp; &nbsp; &nbsp; }<br>&nbsp; &nbsp; } while (choice != 6);<br><br>&nbsp; &nbsp; return 0;<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-03-17 10:43:05 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2520723541</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2520738502</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1995618230/1959cb2d2c00bbb2be6d3bf9c1954344/20_BT1.cpp" />
         <pubDate>2023-03-17 10:58:30 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2520738502</guid>
      </item>
      <item>
         <title>24-Bai1.cpp</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2544657278</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1995413053/6784b68b069b8e21df08b311e12784c9/Bai1.cpp" />
         <pubDate>2023-04-05 06:28:13 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2544657278</guid>
      </item>
      <item>
         <title>24-Bai2.cpp</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2544658401</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1995413053/91cf2f34ab5c546c48628d7558cccc53/Bai2.cpp" />
         <pubDate>2023-04-05 06:29:21 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2544658401</guid>
      </item>
      <item>
         <title>24-Bai3.cpp</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2544658896</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1995413053/1cf06806561622cca2a43cdf960eb67a/Bai3.cpp" />
         <pubDate>2023-04-05 06:29:46 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2544658896</guid>
      </item>
      <item>
         <title>24-Bai4.cpp</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2544659229</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1995413053/a6e526c06dc1330cc07b8eb52bac20c6/Bai4.cpp" />
         <pubDate>2023-04-05 06:30:09 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2544659229</guid>
      </item>
      <item>
         <title>24-Bai5.cpp</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2544659570</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1995413053/f6b6b4fea9e56cb03bd7eca88fe716bc/Bai5.cpp" />
         <pubDate>2023-04-05 06:30:31 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2544659570</guid>
      </item>
      <item>
         <title>04-Trần Tuấn Anh-bài1</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2547163757</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2016070289/46d8b7a1e9da51ccee351605b0b5ec9f/ThucHanh1_1.cpp" />
         <pubDate>2023-04-07 12:47:39 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2547163757</guid>
      </item>
      <item>
         <title>04-Trần Tuấn Anh - bài2 </title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2547164194</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2016070289/95554ec01b4d7adad5216136b9d5c0fb/ThucHanh2_1.cpp" />
         <pubDate>2023-04-07 12:48:27 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2547164194</guid>
      </item>
      <item>
         <title>04-Trần Tuấn Anh - bài3</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2547164319</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2016070289/beabf9a856b0ceb7f0c63a0419e5f019/ThucHanh3_1.cpp" />
         <pubDate>2023-04-07 12:48:45 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2547164319</guid>
      </item>
      <item>
         <title>21 - bai 1</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2547203357</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1995670110/d2088741545de15fdce9cc9b58b0261d/Chu_vi_dien_tich_hinh_tron.cpp" />
         <pubDate>2023-04-07 14:02:59 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2547203357</guid>
      </item>
      <item>
         <title>21 - bai 2</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2547203869</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1995670110/7ae97808d195bf9333ae0115c1fd0ae2/Xay_dung_lop_thi_sinh.cpp" />
         <pubDate>2023-04-07 14:03:51 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2547203869</guid>
      </item>
      <item>
         <title>21 - bai 3</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2547204040</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1995670110/b964262dd4293c864e91e3d137cb0eeb/Xay_dung_lop_tam_giac.cpp" />
         <pubDate>2023-04-07 14:04:07 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2547204040</guid>
      </item>
      <item>
         <title>19-Bài 1</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2547204451</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1517085314/9a1002f365981ece9e35088f1e88b661/19_Bai1.cpp" />
         <pubDate>2023-04-07 14:04:54 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2547204451</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2547621636</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1995624460/5041cfdb3c4647842e070b987a849ba6/18___Nguyen_Minh_Trong_bai1_1.cpp" />
         <pubDate>2023-04-08 14:10:07 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2547621636</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2547621739</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1995624460/79098cfb177e242c0947f360853174be/18___Nguyen_Minh_Trong_bai1_2.cpp" />
         <pubDate>2023-04-08 14:10:28 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2547621739</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2547621846</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1995624460/5a04178b4babdc204281b8b871df7761/18___Nguyen_Minh_Trong_bai1_3.cpp" />
         <pubDate>2023-04-08 14:10:46 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2547621846</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2547621916</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1995624460/7b9341af4ad9d0c6fb0a2a48008a3447/18___Nguyen_Minh_Trong_bai1_5.cpp" />
         <pubDate>2023-04-08 14:11:04 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2547621916</guid>
      </item>
      <item>
         <title>06-bai1.cpp</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2548618348</link>
         <description><![CDATA[<div>#include&lt;iostream&gt;<br>#include&lt;cmath&gt;<br>#include &lt;string.h&gt;<br>#include &lt;vector&gt;<br><br>using namespace std;<br>class Circle{<br>	private:<br>	 	float r;<br>	public:<br>		float pi = 3.14;	<br>	public:<br>		void setR(){<br>			cout&lt;&lt;"Nhap ban kinh r = ";<br>			cin&gt;&gt;this-&gt;r;	<br>		}<br>		float getR(){<br>			return this-&gt;r;<br>		}<br>		float chuvi(){<br>			return 2*this-&gt;r*this-&gt;pi;<br>		}<br>		float dientich(){<br>			return this-&gt;pi*pow(this-&gt;r,2);<br>		}<br>};<br>int main(){<br>	Circle c;<br>	c.setR();<br>	cout&lt;&lt;"Chu vi tam giac la : "&lt;&lt;c.chuvi()&lt;&lt;endl;<br>	cout&lt;&lt;"Dien tich tam giac la : "&lt;&lt;c.dientich();<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-04-10 08:15:29 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2548618348</guid>
      </item>
      <item>
         <title>06-bai2.cpp</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2548663125</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1997829918/18573cfea9591b9c22eac16751eb0bf1/bai2.cpp" />
         <pubDate>2023-04-10 09:46:42 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2548663125</guid>
      </item>
      <item>
         <title>06-bai3.cpp</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2548663692</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1997829918/e82863eb7988c14fb8db01cc1b281cc3/bai3.cpp" />
         <pubDate>2023-04-10 09:47:54 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2548663692</guid>
      </item>
      <item>
         <title>06-bai4.cpp</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2549877602</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1997829918/8131289d784d8ed32bbfff60e3a87de1/bai4.cpp" />
         <pubDate>2023-04-11 08:24:07 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2549877602</guid>
      </item>
      <item>
         <title>06-bai5.cpp</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2549888276</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1997829918/a50fe521b4dd16c8b61b1519cdae4db1/bai5.cpp" />
         <pubDate>2023-04-11 08:36:13 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2549888276</guid>
      </item>
      <item>
         <title>22-bai1</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2550143024</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2006706153/5a8ed064b0baf6f5f1cbadf7ae359321/22_bai1.cpp" />
         <pubDate>2023-04-11 13:15:12 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2550143024</guid>
      </item>
      <item>
         <title>04 - Trần Tuấn Anh Bài 1 </title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2550143704</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2016070289/5760fb5c04a93da71561fa11d08770eb/BaiThucHanh2_1.cpp" />
         <pubDate>2023-04-11 13:15:45 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2550143704</guid>
      </item>
      <item>
         <title>22 bai2</title>
         <author>tutrann20</author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2550148949</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2018468576/acbda419cab668a84109fe6a9d9c99e9/22_bai2.cpp" />
         <pubDate>2023-04-11 13:19:09 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2550148949</guid>
      </item>
      <item>
         <title>22 bai3</title>
         <author>tutrann20</author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2550149244</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2018468576/3f80e23a40dd0e6dc36e69e6c33bb218/22_bai3.cpp" />
         <pubDate>2023-04-11 13:19:21 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2550149244</guid>
      </item>
      <item>
         <title>22 bai4</title>
         <author>tutrann20</author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2550149867</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2018468576/c8dfcaa07f26133f75b8d2d9664c0474/22_bai4.cpp" />
         <pubDate>2023-04-11 13:19:47 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2550149867</guid>
      </item>
      <item>
         <title>22 bai5</title>
         <author>tutrann20</author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2550150113</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2018468576/f093861231dd1d192a7fbad2653fe880/22_bai5.cpp" />
         <pubDate>2023-04-11 13:19:58 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2550150113</guid>
      </item>
      <item>
         <title>23-bai1</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2550179851</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2018485547/7b5ba6798a2a9d851c4c4458c689bf3f/23_bai1.cpp" />
         <pubDate>2023-04-11 13:38:36 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2550179851</guid>
      </item>
      <item>
         <title>23-bai2</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2550181645</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2018485547/a66c12ce249d4aa8751f50b19c1da3f1/23_bai2.cpp" />
         <pubDate>2023-04-11 13:39:19 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2550181645</guid>
      </item>
      <item>
         <title>23-bai3</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2550181943</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2018485547/d2e5c9751e376aeb1395bae2cdddffdd/23_bai3.cpp" />
         <pubDate>2023-04-11 13:39:32 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2550181943</guid>
      </item>
      <item>
         <title>23-bai4</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2550182237</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2018485547/ceec294509f22317ad05aafcad79face/23_bai4.cpp" />
         <pubDate>2023-04-11 13:39:46 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2550182237</guid>
      </item>
      <item>
         <title>04 - Trần Tuấn Anh-bài2 </title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2550319839</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2016070289/78134948185f7b0410766e92572dcff5/BaiThucHanh2_2.cpp" />
         <pubDate>2023-04-11 15:08:29 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2550319839</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2550322418</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1995624460/11c2f7e1113e00db596afa94525c3d2e/18___Nguyen_Minh_Trong___TH2_1.cpp" />
         <pubDate>2023-04-11 15:10:16 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2550322418</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2550322905</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1995624460/6e8a730d000c7a6dfd874f851991fb27/18___Nguyen_Minh_Trong___TH2_2.cpp" />
         <pubDate>2023-04-11 15:10:38 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2550322905</guid>
      </item>
      <item>
         <title>21 - Bài 1</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2551313838</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1995670110/224b28a6c07edba1b9c862afc95667ef/Xay_dung_lop_phan_so.cpp" />
         <pubDate>2023-04-12 07:59:52 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2551313838</guid>
      </item>
      <item>
         <title>14-Vu Dinh Nam bai thuc hanh 2</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2551681672</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1991884384/988055cf48267c347a14327d5616231b/14_2_1.cpp" />
         <pubDate>2023-04-12 14:07:54 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2551681672</guid>
      </item>
      <item>
         <title>03-bai1</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2551819009</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1995653877/6bf8320524f0c2d2441cca4d1d9ef1db/03_baith1_bai1.cpp" />
         <pubDate>2023-04-12 15:45:20 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2551819009</guid>
      </item>
      <item>
         <title>03-bai2</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2551819411</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1995653877/f85fd12be46cfc835322f05bcada1f1e/03_baith1_bai2.cpp" />
         <pubDate>2023-04-12 15:45:39 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2551819411</guid>
      </item>
      <item>
         <title>03-bai3</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2551819815</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1995653877/b5a8b73fb09f25b0ca10d7e907115bd8/03_baith1_bai3.cpp" />
         <pubDate>2023-04-12 15:46:00 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2551819815</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2551960770</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2019774286/9250ebaef9dac6e12e8b48f7b153ad1c/20_T_Th_nhTrung_B_i1.cpp" />
         <pubDate>2023-04-12 17:42:15 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2551960770</guid>
      </item>
      <item>
         <title>09-Bai1</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2552735844</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1991815282/2fba5fb5a8209e90068886af4f032b74/Bai1_HinhTron.cpp" />
         <pubDate>2023-04-13 07:17:54 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2552735844</guid>
      </item>
      <item>
         <title>09-Bai2</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2552736139</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1991815282/b2f631fc259f841442c530afe56b4cfa/Bai2_ThiSinh.cpp" />
         <pubDate>2023-04-13 07:18:12 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2552736139</guid>
      </item>
      <item>
         <title>09-Bai3</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2552736454</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1991815282/faf98259ee27ac817dd76d22d553464f/Bai3_tamGiac.cpp" />
         <pubDate>2023-04-13 07:18:33 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2552736454</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2552810647</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1991821799/9fffdd6a5b6a201ad71f9850146e31a1/1_bai2_1.cpp" />
         <pubDate>2023-04-13 08:29:26 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2552810647</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2552811350</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1991821799/ebbe72b37326019091f9a7e706af6474/1_bai2_2.cpp" />
         <pubDate>2023-04-13 08:30:08 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2552811350</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2552812068</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1991821799/700f00c64fc56576e187ecdf43a03a62/1_bai1_1.cpp" />
         <pubDate>2023-04-13 08:30:26 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2552812068</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2552812571</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1991821799/18ac2bd838fc1ef6230106ec9a001725/1_bai1_3.cpp" />
         <pubDate>2023-04-13 08:30:57 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2552812571</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2552812736</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1991821799/0a0412ba414ff16c6cda95fef5d0d619/1_bai1_4.cpp" />
         <pubDate>2023-04-13 08:31:09 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2552812736</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2552812937</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1991821799/aea57c3506faf5ccad6e30c354f3c0b4/1_bai1_5.cpp" />
         <pubDate>2023-04-13 08:31:21 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2552812937</guid>
      </item>
      <item>
         <title>24-Bai1.cpp </title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2552878118</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1995413053/9bd3b9ab2e54eeae99569e6113504d20/Bai1.cpp" />
         <pubDate>2023-04-13 09:48:35 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2552878118</guid>
      </item>
      <item>
         <title>24-Bai2.cpp</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2552878349</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1995413053/8bdb561840371a88bf3c7aa4b51751ac/Bai2.cpp" />
         <pubDate>2023-04-13 09:48:53 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2552878349</guid>
      </item>
      <item>
         <title>24-Bai3.cpp</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2552903199</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1995413053/6325cca17d1879b0696f28c9354e9ed7/Bai3.cpp" />
         <pubDate>2023-04-13 10:19:58 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2552903199</guid>
      </item>
      <item>
         <title>06-bai1.cpp</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2553372351</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1997829918/fce38611cae20b6b7398cc77a20ca92f/1304.cpp" />
         <pubDate>2023-04-13 15:38:04 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2553372351</guid>
      </item>
      <item>
         <title>06-bai2.cpp</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2553373249</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1997829918/9fe1ce67fe6c2296172c46baa44104ad/1304bai2.cpp" />
         <pubDate>2023-04-13 15:38:49 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2553373249</guid>
      </item>
      <item>
         <title>06-bai3.cpp</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2553392117</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1997829918/e210cc3245b0cd8be2b1f3ad8204d563/1304bai3.cpp" />
         <pubDate>2023-04-13 15:53:52 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2553392117</guid>
      </item>
      <item>
         <title>03-bth2-bai1</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2553396476</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1995653877/532f1b6db5609cda7f76d3a6c65a364f/03_baith2_bai1.cpp" />
         <pubDate>2023-04-13 15:57:29 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2553396476</guid>
      </item>
      <item>
         <title>03-bth2-bai2</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2553406604</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1995653877/fc83a331fef4b7032191a3af1d9e1855/03_baith2_bai2.cpp" />
         <pubDate>2023-04-13 16:06:14 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2553406604</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2553448045</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1517085314/6b9046b9839d57bf89416be9a8f7c038/19_Bai2.cpp" />
         <pubDate>2023-04-13 16:40:47 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2553448045</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2553448451</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1517085314/eb823388eac3551fcedb2204c6d06337/19_Bai3.cpp" />
         <pubDate>2023-04-13 16:41:06 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2553448451</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2553448735</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1517085314/da92c9f9ddb1e629eaf38127d5b16d04/19_Bai4.cpp" />
         <pubDate>2023-04-13 16:41:21 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2553448735</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2553449072</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1517085314/55fe537ce3030fba5444cc10cdeddca5/19_Bai5.cpp" />
         <pubDate>2023-04-13 16:41:37 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2553449072</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2553538581</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1517085314/1db94c8c1e35e8e613a321a7a0a84170/19_bai1.cpp" />
         <pubDate>2023-04-13 17:58:12 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2553538581</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2553538900</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1517085314/764ee9e9778711b7691cfb96cb15d104/19_bai2.cpp" />
         <pubDate>2023-04-13 17:58:30 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2553538900</guid>
      </item>
      <item>
         <title>13- bai 2.1</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2554237058</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1991819324/3c34b9fd314e0992c68caa7facc30af6/13__bai_th2_1.cpp" />
         <pubDate>2023-04-14 07:06:45 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2554237058</guid>
      </item>
      <item>
         <title>09-Bài1</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2554244180</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1991815282/b22ce2f33b5ecb75e22a900d3f14509a/09_Bai1_PhanSo.cpp" />
         <pubDate>2023-04-14 07:14:57 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2554244180</guid>
      </item>
      <item>
         <title>22-bai1</title>
         <author>tutrann20</author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2554303099</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2018468576/cf2a4d9404d6142c8be50aa96d32cb3d/22_bai1.cpp" />
         <pubDate>2023-04-14 08:25:10 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2554303099</guid>
      </item>
      <item>
         <title>22 bai2</title>
         <author>tutrann20</author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2554303383</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2018468576/bfce3ebc7f996a85166a71c49fe39302/22_bai2.cpp" />
         <pubDate>2023-04-14 08:25:32 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2554303383</guid>
      </item>
      <item>
         <title>17-bai2.1</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2554313084</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1991819324/e0b267afbbaad19e7cc03049a4e8baec/thieu1.cpp" />
         <pubDate>2023-04-14 08:38:05 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2554313084</guid>
      </item>
      <item>
         <title>13-bai 2.2</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2554322301</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1991819324/ab9ce79b32abcb163c19b3114c6c2b91/13_bai2_2.cpp" />
         <pubDate>2023-04-14 08:49:35 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2554322301</guid>
      </item>
      <item>
         <title>17-bai2.2</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2554325839</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1991819324/c6db540a6ab97e419366f895638fe9d4/thieu2.cpp" />
         <pubDate>2023-04-14 08:53:23 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2554325839</guid>
      </item>
      <item>
         <title>BÀI THỰC HÀNH 3</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2554612146</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2023-04-14 14:22:49 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2554612146</guid>
      </item>
      <item>
         <title>07-Nguyễn Khánh Duy Bài Th1</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2554613021</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1995622251/5938b3346d454bba6a8b05e31b62dbbf/th1.cpp" />
         <pubDate>2023-04-14 14:23:35 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2554613021</guid>
      </item>
      <item>
         <title>07-Th1 b2</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2554613999</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1995622251/da626a3fc97e4aae9115c351c27f8c72/bai2.cpp" />
         <pubDate>2023-04-14 14:24:22 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2554613999</guid>
      </item>
      <item>
         <title>07-Th1 Bài 3</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2554614393</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1995622251/ae99056d98684863b81b1edb78ed202f/bai3_th1.cpp" />
         <pubDate>2023-04-14 14:24:44 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2554614393</guid>
      </item>
      <item>
         <title>09-Bài2</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2556630680</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1991815282/cb0b907c0359e3dd7a8eb5abeece82c6/09_Bai2_soPhuc.cpp" />
         <pubDate>2023-04-17 08:38:28 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2556630680</guid>
      </item>
      <item>
         <title>24-Bai1.cpp</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2558158555</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1995413053/1c5e2f15c9d84da020ee1fb939f695b3/Bai1.cpp" />
         <pubDate>2023-04-18 06:54:56 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2558158555</guid>
      </item>
      <item>
         <title>24-Bai2.cpp</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2558158826</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1995413053/818c214cd0cdd6af05c86d9a1b0c691a/Bai2.cpp" />
         <pubDate>2023-04-18 06:55:09 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2558158826</guid>
      </item>
      <item>
         <title>24-Bai3.cpp</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2558159201</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1995413053/af446a1a74ddf5fcd80bedd5a4461e49/Bai3.cpp" />
         <pubDate>2023-04-18 06:55:22 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2558159201</guid>
      </item>
      <item>
         <title>15-BaiThucHanh1</title>
         <author>dammit2525</author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2558198748</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2016045717/daccf78f1a438baaabb9b2ca749dffd3/15_BaiThucHanh1.cpp" />
         <pubDate>2023-04-18 07:27:58 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2558198748</guid>
      </item>
      <item>
         <title>15-BaiThucHanh2</title>
         <author>dammit2525</author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2558231578</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2016045717/82d546f78dfeb79d3320434958fc5287/15_BaiThucHanh2.cpp" />
         <pubDate>2023-04-18 07:57:10 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2558231578</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2558422799</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1991821799/315769bcd94fdd6278cc0b878025fd10/1_bai1_2.cpp" />
         <pubDate>2023-04-18 11:08:46 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2558422799</guid>
      </item>
      <item>
         <title>04-Bai2</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2558557766</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2016070289/3b36c1b690f4ced1b7dfe5ec83590dfc/BaiThucHanh3_2.cpp" />
         <pubDate>2023-04-18 12:59:43 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2558557766</guid>
      </item>
      <item>
         <title>04-Bai3</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2558558173</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2016070289/22f01c63682f9e4eea4577e9d77e3241/BaiThucHanh3_3.cpp" />
         <pubDate>2023-04-18 12:59:59 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2558558173</guid>
      </item>
      <item>
         <title>05-Bài 1</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2562924847</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1991935032/826775ec8a61ab6056e2e554714855ba/Bai1.cpp" />
         <pubDate>2023-04-21 07:20:25 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2562924847</guid>
      </item>
      <item>
         <title>05-Bài 2</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2562925544</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1991935032/c04817f86036015a77bd605b80faef6a/Bai2.cpp" />
         <pubDate>2023-04-21 07:21:20 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2562925544</guid>
      </item>
      <item>
         <title>05-Bài 3</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2562926083</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1991935032/6b817a7d5c92daa332360af14a578db5/Bai3.cpp" />
         <pubDate>2023-04-21 07:22:01 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2562926083</guid>
      </item>
      <item>
         <title>05-Bài 4</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2562926525</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1991935032/f60e673df16e17eda626fd9068713fe1/Bai4.cpp" />
         <pubDate>2023-04-21 07:22:35 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2562926525</guid>
      </item>
      <item>
         <title>05-Bài 5</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2562926872</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1991935032/feb2d84ef72939de42622d30f7a0ad6f/bai5.cpp" />
         <pubDate>2023-04-21 07:22:56 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2562926872</guid>
      </item>
      <item>
         <title>06-bai2.cpp</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2563041591</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1997829918/49f69929edf8901ebeee20e24fbe5f4e/31404.cpp" />
         <pubDate>2023-04-21 09:34:00 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2563041591</guid>
      </item>
      <item>
         <title>06-bai3.cpp</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2563075938</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1997829918/d4c90b24090dfc0cb0ef9f5fe6c20afc/14043.cpp" />
         <pubDate>2023-04-21 10:16:10 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2563075938</guid>
      </item>
      <item>
         <title>15-Bai2.cpp</title>
         <author>dammit2525</author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2563209383</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2016045717/34646b0f371f6fd766877bcc87336127/15_Bai2.cpp" />
         <pubDate>2023-04-21 12:58:49 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2563209383</guid>
      </item>
      <item>
         <title>04-Bai4</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2563290503</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2016070289/e810eb34ae9887f5de2add3c62795ba0/BaiThucHanh3_4.cpp" />
         <pubDate>2023-04-21 14:09:19 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2563290503</guid>
      </item>
      <item>
         <title>15-Bai3.cpp</title>
         <author>dammit2525</author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2563371261</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2016045717/e6a257a9fe4e5c518f980bea60a9a758/15_BTT3_3.cpp" />
         <pubDate>2023-04-21 15:22:32 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2563371261</guid>
      </item>
      <item>
         <title>09-Bài2</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2566632158</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1991815282/062741e09afac33c3abdcf7093b7eadd/09_Bai2_KhachHang_HoaDon.cpp" />
         <pubDate>2023-04-25 03:46:56 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2566632158</guid>
      </item>
      <item>
         <title>21-bai1</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2571734283</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1995670110/f257c166155344b53a3f997ecd3f5ba7/Bai_1.cpp" />
         <pubDate>2023-04-28 12:30:53 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2571734283</guid>
      </item>
      <item>
         <title>21-bai2</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2571734577</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1995670110/2f701fa4c161938ee7402e6000f61a00/Bai_2.cpp" />
         <pubDate>2023-04-28 12:31:12 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2571734577</guid>
      </item>
      <item>
         <title>21-bai3</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2571734796</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1995670110/30942f5ab4d9e5c71581ab5e96a8d93a/Bai_3.cpp" />
         <pubDate>2023-04-28 12:31:26 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2571734796</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2571804670</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2034632394/172849b5ec47ffca8e9aa795ade73c81/20_Bai1.cpp" />
         <pubDate>2023-04-28 13:31:26 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2571804670</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2571827467</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2024645155/a8a866dc9a9e41b34e953c249f9f7b6c/2_ThucHanh1_Bai1.cpp" />
         <pubDate>2023-04-28 13:49:20 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2571827467</guid>
      </item>
      <item>
         <title>2-Bai2</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2571828929</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2024645155/45279fd4c1a2b58a7f7e71935a33e6a8/2_ThucHanh1_Bai2.cpp" />
         <pubDate>2023-04-28 13:50:22 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2571828929</guid>
      </item>
      <item>
         <title>2-Bai3</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2571829283</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2024645155/e671015a237adacbd6c17e1da122e5b6/2_ThucHanh1_Bai3.cpp" />
         <pubDate>2023-04-28 13:50:40 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2571829283</guid>
      </item>
      <item>
         <title>2-Bai4</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2571829596</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2024645155/f8716c5db7cdf0928139597f8fa002d4/2_ThucHanh1_Bai4.cpp" />
         <pubDate>2023-04-28 13:50:56 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2571829596</guid>
      </item>
      <item>
         <title>2-Bai5</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2571829944</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2024645155/801c7fd00ebcada104bee479299ca44b/2_ThucHanh1_Bai5.cpp" />
         <pubDate>2023-04-28 13:51:14 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2571829944</guid>
      </item>
      <item>
         <title>2-Bai1</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2571830768</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2024645155/2a0641e9992e8c04d368664a9e6ece7e/2_ThucHanh2_Bai1.cpp" />
         <pubDate>2023-04-28 13:51:54 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2571830768</guid>
      </item>
      <item>
         <title>2-Bai2</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2571831348</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2024645155/7e0eb6bc5f6140b1faed1f4fc9682bd4/2_ThucHanh2_Bai2.cpp" />
         <pubDate>2023-04-28 13:52:22 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2571831348</guid>
      </item>
      <item>
         <title>2-Bai3</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2571831664</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2024645155/23f685fcda2d445d0e0867a15abe49f9/2_ThucHanh2_Bai3.cpp" />
         <pubDate>2023-04-28 13:52:38 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2571831664</guid>
      </item>
      <item>
         <title>16-bai1</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2571851609</link>
         <description><![CDATA[<div><br><br></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2034662993/aaaafbf732f13904086a7e76e6595996/16_bai1.cpp" />
         <pubDate>2023-04-28 14:08:48 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2571851609</guid>
      </item>
      <item>
         <title>15-Bai1.cpp</title>
         <author>dammit2525</author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2579075264</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2016045717/5521b29af853f1a28cebd2bb59d2516d/15_BTT4_1.cpp" />
         <pubDate>2023-05-05 03:51:55 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2579075264</guid>
      </item>
      <item>
         <title>15-Bai2.cpp</title>
         <author>dammit2525</author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2579086839</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2016045717/f6d90e881c0855bc080ca15b7f4de716/15_BTT4_2.cpp" />
         <pubDate>2023-05-05 04:10:14 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2579086839</guid>
      </item>
      <item>
         <title>09-Bai3</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2579155951</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1991815282/4706b6762a4dcb46f4b8bc199579e8f8/09_Bai3_SanPham_SanXuat.cpp" />
         <pubDate>2023-05-05 06:17:48 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2579155951</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2579317548</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1991821799/413a65cd6aac2036d1ef16b4febb12ea/1_bai2_3.cpp" />
         <pubDate>2023-05-05 09:22:46 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2579317548</guid>
      </item>
      <item>
         <title>22-bai2</title>
         <author>tutrann20</author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2579402520</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2018468576/915f785a21b14e14227ef1df5e902408/22_bai2.cpp" />
         <pubDate>2023-05-05 11:07:44 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2579402520</guid>
      </item>
      <item>
         <title>22-bai3</title>
         <author>tutrann20</author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2579402707</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2018468576/963403987e6a15d0ae9e35b1198dedaf/22_bai3.cpp" />
         <pubDate>2023-05-05 11:08:02 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2579402707</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2579410748</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1517085314/c31c2d1a47ea64474da5374d5be71a19/19_Bai2.cpp" />
         <pubDate>2023-05-05 11:17:29 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2579410748</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2579410898</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1517085314/5c6963cb4209ad452d52477340fe32d8/19_Bai3.cpp" />
         <pubDate>2023-05-05 11:17:41 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2579410898</guid>
      </item>
      <item>
         <title>04-Bai1</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2579445031</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2016070289/671c9c0d099a7fa7efcd139cf8ddddec/BaiThucHanh4_1.cpp" />
         <pubDate>2023-05-05 11:58:26 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2579445031</guid>
      </item>
      <item>
         <title>04-Bai2</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2579445981</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2016070289/c42043b33423a33af879c1e9b637bc24/ThucHanh4_2.cpp" />
         <pubDate>2023-05-05 11:59:26 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2579445981</guid>
      </item>
      <item>
         <title>15-Bai3.cpp</title>
         <author>dammit2525</author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2579538821</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2016045717/c4ff046a05fa04412c12074ec67d5ef0/15_BTT4_3.cpp" />
         <pubDate>2023-05-05 13:21:37 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2579538821</guid>
      </item>
      <item>
         <title>21 - Bai1 </title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2579543810</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1995670110/647b39105d35afd3e4717b66a1672527/bai_1th4.cpp" />
         <pubDate>2023-05-05 13:25:27 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2579543810</guid>
      </item>
      <item>
         <title>21 - Bai 2</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2579544310</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1995670110/20d2d521712c6b79679889686f688d6c/bai_2th4.cpp" />
         <pubDate>2023-05-05 13:25:53 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2579544310</guid>
      </item>
      <item>
         <title>21 - Bai 3 </title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2579544756</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1995670110/7d215b7e1e59266ac75de477984d556b/bai_3th4.cpp" />
         <pubDate>2023-05-05 13:26:16 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2579544756</guid>
      </item>
      <item>
         <title>7-bai1</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2579546937</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1995622251/422369e646f85da18fa2dbf1c0bb36d9/th4.cpp" />
         <pubDate>2023-05-05 13:27:54 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2579546937</guid>
      </item>
      <item>
         <title>7-bai2</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2579547270</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1995622251/51c2ffd9ca19d7e2df2fd4706643c323/bai2th4.cpp" />
         <pubDate>2023-05-05 13:28:09 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2579547270</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2579557812</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1995624460/fbf1c03475ba867493d8ae68d8ad78b9/18___TH2_3.cpp" />
         <pubDate>2023-05-05 13:36:07 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2579557812</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2579558863</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1995624460/c580b9672fb047d59ed00e63ddefbf27/18___TH3_2.cpp" />
         <pubDate>2023-05-05 13:36:55 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2579558863</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2579560231</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1995624460/76ef0bcc5d5b4619dcd01877d0824184/18___TH3_2.cpp" />
         <pubDate>2023-05-05 13:37:59 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2579560231</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2579560879</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1995624460/002a5a3ec568badf433653c9e3461f02/18___TH3_3.cpp" />
         <pubDate>2023-05-05 13:38:29 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2579560879</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2579562859</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1995624460/e9efb0295f8e12b0fcd52ea48012accd/18___TH4_1.cpp" />
         <pubDate>2023-05-05 13:39:55 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2579562859</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2579563362</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1995624460/e147e323b7e5067918b0a9c2fd39fec2/18___TH4_2.cpp" />
         <pubDate>2023-05-05 13:40:19 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2579563362</guid>
      </item>
      <item>
         <title>23-Bài 2</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2580792374</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2018485547/17bb66843bda4e994cc7a955cb42b34a/23_bai2.cpp" />
         <pubDate>2023-05-07 12:10:25 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2580792374</guid>
      </item>
      <item>
         <title>23-Bài 3</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2580792462</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2018485547/a4e40d11329f1d5af30fd01f6f20cd97/23_bai3.cpp" />
         <pubDate>2023-05-07 12:10:40 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2580792462</guid>
      </item>
      <item>
         <title>23-Bài1</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2580794909</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2018485547/d3ef7d7a51c715fa4f329d548a0d4be4/23_bai1.cpp" />
         <pubDate>2023-05-07 12:16:11 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2580794909</guid>
      </item>
      <item>
         <title>23-Bài2</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2580795004</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2018485547/bb433f4f40a7874572c00db08a2fe998/23_bai2.cpp" />
         <pubDate>2023-05-07 12:16:25 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2580795004</guid>
      </item>
      <item>
         <title>23-Bài3</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2580795096</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2018485547/dd8256c979efd6700abd0e2277241baa/23_bai3.cpp" />
         <pubDate>2023-05-07 12:16:37 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2580795096</guid>
      </item>
      <item>
         <title>23-Bài1</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2580809304</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2018485547/d3961f84b0b52c5b4a76310a5b42bfa7/23_bai1.cpp" />
         <pubDate>2023-05-07 12:46:54 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2580809304</guid>
      </item>
      <item>
         <title>23-Bài2</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2580809346</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2018485547/bc9ef3fc251bfe0045ff33c7e49d9061/23_Bai2.cpp" />
         <pubDate>2023-05-07 12:47:02 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2580809346</guid>
      </item>
      <item>
         <title>09-Bài4</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2580937433</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1991815282/63ccbc0be4d6a303d9f05259cdceacb3/PhanSoToiGian.cpp" />
         <pubDate>2023-05-07 16:29:59 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2580937433</guid>
      </item>
      <item>
         <title>09-Bài1</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2580946904</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1991815282/6342693c1a89a0cf46e62c3bcabc3763/09_NhanVien_NvVanPhong_NvSanXuat.cpp" />
         <pubDate>2023-05-07 16:47:31 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2580946904</guid>
      </item>
      <item>
         <title>24-Bai1.cpp</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2580991237</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1995413053/2bea2adfa18a9208e0c279a60dfc8d3f/Bai1.cpp" />
         <pubDate>2023-05-07 17:59:09 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2580991237</guid>
      </item>
      <item>
         <title>24-Bai2.cpp</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2580991434</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1995413053/4387adb6bea505958d18e8d458e44d7d/Bai2.cpp" />
         <pubDate>2023-05-07 17:59:32 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2580991434</guid>
      </item>
      <item>
         <title>24-Bai3.cpp</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2580991555</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1995413053/12208ee960c5f22fbdeda344a6c3ec73/Bai3.cpp" />
         <pubDate>2023-05-07 17:59:48 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2580991555</guid>
      </item>
      <item>
         <title>7-b1</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2581516016</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1995622251/0bdbb44bf9a329bc3dcd3c6ffd8b51e3/7_th2_b1.cpp" />
         <pubDate>2023-05-08 05:23:20 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2581516016</guid>
      </item>
      <item>
         <title>7-b2</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2581516161</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2023-05-08 05:23:28 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2581516161</guid>
      </item>
      <item>
         <title>09-Bài2</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2581527817</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1991815282/da8ed23826060aa7c675bc66fda61666/09_Bai2.cpp" />
         <pubDate>2023-05-08 05:34:54 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2581527817</guid>
      </item>
      <item>
         <title>09-Bài5</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2581539858</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1991815282/b09b13024ae9680cdb9c58a86dd73142/Bai5_SoPhuc.cpp" />
         <pubDate>2023-05-08 05:44:45 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2581539858</guid>
      </item>
      <item>
         <title>13-bai1</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2581546398</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1991819324/11e42391dbb163fb2154def592d616da/13_bai4_1.cpp" />
         <pubDate>2023-05-08 05:50:40 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2581546398</guid>
      </item>
      <item>
         <title>05-th2-bai1</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2581617914</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1991935032/c12a12f3c451a74b456d76ed7f5a51fa/05_th2_bai1.cpp" />
         <pubDate>2023-05-08 06:45:48 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2581617914</guid>
      </item>
      <item>
         <title>05-th2-bai2</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2581618370</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1991935032/0ae2bdcf68c75045207f4ee183ea7683/05_th2_bai2.cpp" />
         <pubDate>2023-05-08 06:46:10 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2581618370</guid>
      </item>
      <item>
         <title>05-th2-bai3</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2581618899</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1991935032/74780395c3a91fc76dec1dc60d99a002/05_th2_bai3.cpp" />
         <pubDate>2023-05-08 06:46:39 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2581618899</guid>
      </item>
      <item>
         <title>05-th3-bai1</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2581627225</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1991935032/ff7650808ca9426590719cc8e9e7e632/05_th3_bai1.cpp" />
         <pubDate>2023-05-08 06:53:15 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2581627225</guid>
      </item>
      <item>
         <title>05-th3-bai2</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2581627616</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1991935032/081785154e784127e6f691e1f4bb6a2e/05_th3_bai2.cpp" />
         <pubDate>2023-05-08 06:53:35 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2581627616</guid>
      </item>
      <item>
         <title>05-th3-bai3</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2581628133</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1991935032/f23887ec93d1e2f30514510ecfdecd74/05_th3_bai3.cpp" />
         <pubDate>2023-05-08 06:54:04 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2581628133</guid>
      </item>
      <item>
         <title>05-th4-bai1</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2581661997</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1991935032/9ab7ff0df88888dfb53d9b1a9783c4a3/05_th4_bai1.cpp" />
         <pubDate>2023-05-08 07:23:07 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2581661997</guid>
      </item>
      <item>
         <title>05-th4-bai2</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2581662275</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1991935032/3dc72031606617ab8ed507388a19ea7e/05_th4_bai2.cpp" />
         <pubDate>2023-05-08 07:23:21 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2581662275</guid>
      </item>
      <item>
         <title>05-th4-bai3</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2581662825</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1991935032/da498c13f8638b19c71be8f71b1b7e72/05_th4_bai3.cpp" />
         <pubDate>2023-05-08 07:23:48 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2581662825</guid>
      </item>
      <item>
         <title>09-Bài3</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2581786283</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1991815282/5afbfe238ec4f8cd40e665cebda3808e/09_Bai3.cpp" />
         <pubDate>2023-05-08 09:19:11 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2581786283</guid>
      </item>
      <item>
         <title>14-th3-b2</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2581956540</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1991884384/f8ab4fbf7c3b3e4da58a5f641d19129f/14_th3_b2.cpp" />
         <pubDate>2023-05-08 12:17:36 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2581956540</guid>
      </item>
      <item>
         <title>14-th3-b3</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2581956755</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1991884384/b7d521066083c02cdadfef74922aa581/14_th3_b3.cpp" />
         <pubDate>2023-05-08 12:17:49 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2581956755</guid>
      </item>
      <item>
         <title>14-th3-b5</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2581957185</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1991884384/38d37905b2d763a1c5d823431ae3e76b/14_th3_b5.cpp" />
         <pubDate>2023-05-08 12:18:14 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2581957185</guid>
      </item>
      <item>
         <title>14-th4-b1</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2581961333</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1991884384/ef7d9cd6d6b1b396c0aca601b3a28108/14_th4_b1.cpp" />
         <pubDate>2023-05-08 12:21:54 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2581961333</guid>
      </item>
      <item>
         <title>14-th4-b2</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2581962263</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1991884384/6b7f685727d00587ae80c56ebac7f3e3/14_th4_b2.cpp" />
         <pubDate>2023-05-08 12:22:40 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2581962263</guid>
      </item>
      <item>
         <title>22 bai1</title>
         <author>tutrann20</author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2582615029</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2018468576/419fded7488a0894c105f5f0dea622a5/22_bai1.cpp" />
         <pubDate>2023-05-08 19:52:09 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2582615029</guid>
      </item>
      <item>
         <title>22 bai2</title>
         <author>tutrann20</author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2582615456</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2018468576/6647ac223e9153773a3b8d81b7114aa2/22_bai2.cpp" />
         <pubDate>2023-05-08 19:52:36 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2582615456</guid>
      </item>
      <item>
         <title>2-ThucHanh3-Bai2</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2582893358</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2024645155/c72393b8501452b0e484bc3af29f3310/2_ThucHanh3_Bai2.cpp" />
         <pubDate>2023-05-09 01:17:28 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2582893358</guid>
      </item>
      <item>
         <title>2-ThucHanh3-Bai3</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2582893709</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2024645155/32f41a02277611db1b1d34146b9c47bf/2_ThucHanh3_Bai3.cpp" />
         <pubDate>2023-05-09 01:17:42 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2582893709</guid>
      </item>
      <item>
         <title>2-ThucHanh4-Bai1</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2582923204</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2024645155/6603b3675acbdc7a9f115397b27407fe/2_ThucHanh4_Bai1.cpp" />
         <pubDate>2023-05-09 01:36:28 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2582923204</guid>
      </item>
      <item>
         <title>2-ThucHanh4-Bai2</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2582923592</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2024645155/efed7b0b483691b3888a13d5bb445f6c/2_ThucHanh4_Bai2.cpp" />
         <pubDate>2023-05-09 01:36:45 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2582923592</guid>
      </item>
      <item>
         <title>13-bai4.2</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2583182054</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1991819324/c2b1a75b59722dfc4afa92635a5f4372/13_bai4_2.cpp" />
         <pubDate>2023-05-09 05:04:29 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2583182054</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2583273794</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1991821799/8c743325868273c7920e4f278103b6f2/1_bai4_2.cpp" />
         <pubDate>2023-05-09 06:15:05 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2583273794</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2583316439</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1991821799/8913c53f2d5add63d62a08a0262ac0ee/1_bai3_2.cpp" />
         <pubDate>2023-05-09 06:45:50 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2583316439</guid>
      </item>
      <item>
         <title>03-bai1</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2583326925</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2040598208/cace2512ad81df7f5768cd200ce74e71/03_baith4_bai1.cpp" />
         <pubDate>2023-05-09 06:52:38 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2583326925</guid>
      </item>
      <item>
         <title>03-bai2</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2583327388</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2040598208/8362edf405505bae8224682d85983bf9/03_baith4_bai2.cpp" />
         <pubDate>2023-05-09 06:52:59 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2583327388</guid>
      </item>
      <item>
         <title>03-bai2</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2583335428</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2040598208/7b3d5b153ab8fe0e347510e5e15af07e/03_bai2.cpp" />
         <pubDate>2023-05-09 06:58:37 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2583335428</guid>
      </item>
      <item>
         <title>03-bai3</title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2583335998</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2040598208/f4df5f9ce2254cce4e56e56991a4aa56/03_bai3.cpp" />
         <pubDate>2023-05-09 06:58:59 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2583335998</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2583348307</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1991821799/b0070c506b08366dc318385bfbc6dc49/1_bai3_3.cpp" />
         <pubDate>2023-05-09 07:07:34 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2583348307</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2583659022</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1517085314/c62fc6d72bba22705d04cacd4cfadedd/19_Bai1.cpp" />
         <pubDate>2023-05-09 11:34:00 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2583659022</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2583662453</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2010463355/9718d266b5d1749190a3975cdb822b56/08_Bai1.cpp" />
         <pubDate>2023-05-09 11:37:15 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2583662453</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2583662869</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2010463355/825d18a43bed467600e5c1ebab3ad33f/08_Bai2.cpp" />
         <pubDate>2023-05-09 11:37:38 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2583662869</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2583663555</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1517085314/9b9ad5d2c4c9a6e83007a01d1745567a/19_Bai2.cpp" />
         <pubDate>2023-05-09 11:38:18 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2583663555</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2583663578</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2010463355/57c0520ead3f7f8663341325deeb047b/08_Bai3.cpp" />
         <pubDate>2023-05-09 11:38:19 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2583663578</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2583663884</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2010463355/126664c74f7352f6350e668a0b0a668c/08_Bai4.cpp" />
         <pubDate>2023-05-09 11:38:38 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2583663884</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2583664083</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2010463355/d41946a8bdba95c1696c00fa5d6a804f/08_Bai5.cpp" />
         <pubDate>2023-05-09 11:38:51 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2583664083</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2583667691</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2010463355/8c4a294959cfab8a67d0ba44986c4b40/08_Bai1.cpp" />
         <pubDate>2023-05-09 11:42:06 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2583667691</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2583668067</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2010463355/2d0d1bc57658cf97182f3f09957e942d/08_Bai2.cpp" />
         <pubDate>2023-05-09 11:42:23 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2583668067</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2583668411</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2010463355/afa2ac9b27c0a03850d664508ce5a48c/08_Bai3.cpp" />
         <pubDate>2023-05-09 11:42:37 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2583668411</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2583669354</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1517085314/e1f642673180dda3892624ece95e23b0/19_bai3.cpp" />
         <pubDate>2023-05-09 11:43:26 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2583669354</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2583671850</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2010463355/e88cfb59a2687dccd56c69e14ec19388/08_Bai2.cpp" />
         <pubDate>2023-05-09 11:45:41 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2583671850</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2583672129</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2010463355/0e2b19d9bee2ee3bceb73dfa4d58d7ba/08_Bai3.cpp" />
         <pubDate>2023-05-09 11:45:54 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2583672129</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2583672410</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2010463355/aa00ed0fb881050d166123ef78da4926/08_Bai4.cpp" />
         <pubDate>2023-05-09 11:46:07 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2583672410</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2583673695</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2010463355/aa05438f4ace25ea53c3e640861cade2/08_Bai5.cpp" />
         <pubDate>2023-05-09 11:47:09 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2583673695</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2583676311</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2010463355/b4b39e1f02b47e70a4d60b53ccfa048a/08_Bai1.cpp" />
         <pubDate>2023-05-09 11:49:21 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2583676311</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2583676593</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2010463355/bba7de59b79c7460e0d1c10845bd1716/08_Bai2.cpp" />
         <pubDate>2023-05-09 11:49:34 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2583676593</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2583676857</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2010463355/808d75edc4ab72e7515300b601c2b137/08_Bai3.cpp" />
         <pubDate>2023-05-09 11:49:47 UTC</pubDate>
         <guid>https://padlet.com/ngocha84/ngnmrwt4e1jwocza/wish/2583676857</guid>
      </item>
   </channel>
</rss>
