<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>เเฟ้มสะสมผลงาน วิชา คอมพิวเตอร์เพื่อการเรียนรู้ ว32250 (ADV.Dev C++) ของนางสาวธนภรณ์สุขแสวง ชั้น ม.5/2เลขที่34 by Thanapon Suksawaeng</title>
      <link>https://padlet.com/cakethanapon4/zpf3roax7qopcyre</link>
      <description></description>
      <language>en-us</language>
      <pubDate>2023-11-08 02:13:20 UTC</pubDate>
      <lastBuildDate>2024-02-05 08:01:24 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url></url>
      </image>
      <item>
         <title></title>
         <author>cakethanapon4</author>
         <link>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2780780972</link>
         <description><![CDATA[<p>int main()</p><p>{</p><p>float rate = 0.0;</p><p>float consumption = 0.0;</p><p>float cost = 0.0;</p><p>printf("Electricity rate per kilowatt hour? :");</p><p>scanf("%f", &amp;rate);</p><p>printf("Amount of electricity used (kilowatt hour unit) : ");</p><p>scanf("%f",&amp;consumption);</p><p>cost = rate * consumption;</p><p>printf("Electricity bill: %.2f THB\n", cost);</p><p>return 0;</p><p>}</p>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2134382024/4a5254ca875b4ac1d001d9bfce9614e8/image.png" />
         <pubDate>2023-11-08 02:20:36 UTC</pubDate>
         <guid>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2780780972</guid>
      </item>
      <item>
         <title></title>
         <author>cakethanapon4</author>
         <link>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2797239913</link>
         <description><![CDATA[<p>#include &lt;stdio.h&gt;&nbsp; &nbsp;&nbsp;<br>#include &lt;conio.h&gt; &nbsp; &nbsp;<br>&nbsp; &nbsp; int main() &nbsp; &nbsp;{<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;int Watt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;float Hours,Power,Unit,Payment;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;printf("Program of Calculation your Electric\n");<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;printf("----------------------------------------------------------\n");<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;printf("Enter Watt: &nbsp;");<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;scanf ("%d",&amp;Watt);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;printf("Enter Hours: &nbsp;");<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;scanf("%f",&amp;Hours);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Power = Watt*Hours;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Unit = Power/1000;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Payment = Unit*3.99;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;printf("Your payment of electric is: %.2f\n",Payment);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;getch(); &nbsp; &nbsp;<br>}<br></p>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2134382024/33ccb6cefeab7580e45d4a57e4de2629/image.png" />
         <pubDate>2023-11-21 03:04:32 UTC</pubDate>
         <guid>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2797239913</guid>
      </item>
      <item>
         <title></title>
         <author>cakethanapon4</author>
         <link>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2797253837</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2134382024/1044f7debf60375c9480aad8c2310a72/_________.jpg" />
         <pubDate>2023-11-21 03:14:57 UTC</pubDate>
         <guid>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2797253837</guid>
      </item>
      <item>
         <title></title>
         <author>cakethanapon4</author>
         <link>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2867758485</link>
         <description><![CDATA[<p>#include&lt;stdio.h&gt;</p><p>#include&lt;conio.h&gt;</p><p>int main()</p><p>{</p><p>   int points;</p><p>        printf("How many points can you score?: ");</p><p>        scanf("%d",&amp;points);</p><p>    if(points&gt;=50){</p><p>        printf("You have a score of more than 50\n");</p><p>        printf("pass exam...Congretulations\n");</p><p>    }  </p><p>    else</p><p>    {</p><p>        printf("Fail...Attempt again\n");</p><p>    }</p><p>    printf("Your score =  %d\n",points);</p><p>    printf("Bye bye...see you again next semester \n");</p><p>    getch();</p><p>    return(0);</p><p>}</p><p><br/></p>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2134382024/085dffe33e04b5efe5a3e6be8c5c6538/image.png" />
         <pubDate>2024-01-31 02:49:25 UTC</pubDate>
         <guid>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2867758485</guid>
      </item>
      <item>
         <title></title>
         <author>cakethanapon4</author>
         <link>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2867759260</link>
         <description><![CDATA[<p>#include&lt;stdio.h&gt;</p><p>#include&lt;conio.h&gt;</p><p>int main()</p><p>{</p><p>int sum = 1;</p><p>int fac, count = 1;</p><p>printf("Please enter number of factorial : ");</p><p>scanf("%d", &amp;fac);</p><p>while (count&lt;=fac)</p><p>{</p><p>sum = sum*count;</p><p>count = count + 1;</p><p>}</p><p>printf("Result of %d! is %d",fac,sum);</p><p>getch();</p><p>}</p>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2134382024/dcadd44034753e4671bd898b09d43cf0/image.png" />
         <pubDate>2024-01-31 02:50:15 UTC</pubDate>
         <guid>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2867759260</guid>
      </item>
      <item>
         <title>#include</title>
         <author>cakethanapon4</author>
         <link>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2867759598</link>
         <description><![CDATA[<p>#include&lt;stdio.h&gt;</p><p>#include&lt;conio.h&gt;</p><p>int main()</p><p>{</p><p>    int month;</p><p>    printf("Enter Your Month : (1-12) ");</p><p>    scanf("%d",&amp;month);</p><p>    switch (month)</p><p>    {</p><p>           case 1 :</p><p>                    printf("January \n");</p><p>                    printf("Happy New Year \n");</p><p>                    printf("Children’s Day \n");</p><p>                    break;</p><p>           case 2 :</p><p>                    printf("February \n");</p><p>                    printf("Chinese New Year’s Day \n");</p><p>                    printf("Valentine’s Day \n");</p><p>                    break;</p><p>           case 3 :</p><p>                    printf("March \n");</p><p>                    printf("Thai Elephant Day \n");</p><p>                    printf("National Cereal Day \n");</p><p>                    break;</p><p>           case 4 :</p><p>                    printf("April \n");</p><p>                    printf("Thai Heritage Conservation Day \n");</p><p>                    printf("Songkran Festival Day \n");</p><p>                    break; </p><p>           case 5 :</p><p>                    printf("May \n");</p><p>                    printf("National Labour Day \n");</p><p>                    printf("National Tree Day \n");</p><p>                    break;</p><p>           case 6 :</p><p>                    printf("June \n");</p><p>                    printf("World Environment Day \n");</p><p>                    printf("Sunthornphu Day /Soonthornphu Day \n");</p><p>                    break;</p><p>           case 7 :</p><p>                    printf("July \n");</p><p>                    printf("Asarnha Bucha Day \n");</p><p>                    printf("Buddhist Lent Day \n");</p><p>                    break;</p><p>           case 8 :</p><p>                    printf("August \n");</p><p>                    printf("Thai Peace Day \n");</p><p>                    printf("Chinese Ghost Festival \n");</p><p>                    break;</p><p>           case 9 :</p><p>                    printf("September \n");</p><p>                    printf("Moon Festival/Moon Day \n");</p><p>                    printf("Thai Ghost Festival \n");</p><p>                    break;</p><p>           case 10 :</p><p>                    printf("October \n");</p><p>                    printf("Innovation Day \n");</p><p>                    printf("Thai Technology Day \n");</p><p>                    break;</p><p>           case 11 :</p><p>                    printf("November \n");</p><p>                    printf("Loy Krathong Day \n");</p><p>                    printf("Navy Day \n");</p><p>                    break;</p><p>           case 12 :</p><p>                    printf("December \n");</p><p>                    printf("National Sport’s Day \n");</p><p>                    printf("Nation Wildlife Protection Day \n");</p><p>                    break;         </p><p>           default :</p><p>                    printf("Error \n");</p><p>                    printf("Please enter Numer (1-12) only, Thank you \n");</p><p>       }</p><p>       getch();</p><p>}</p>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2134382024/c0601ad619338018f796311ad14f2152/image.png" />
         <pubDate>2024-01-31 02:50:38 UTC</pubDate>
         <guid>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2867759598</guid>
      </item>
      <item>
         <title></title>
         <author>cakethanapon4</author>
         <link>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2867759970</link>
         <description><![CDATA[<p>#include&lt;stdio.h&gt;</p><p>#include&lt;conio.h&gt;</p><p>int main()</p><p>{</p><p>float score;</p><p>float grade;</p><p>printf("Input Your Score : ");</p><p>scanf("%f",&amp;score);</p><p>if (score&gt;=80)</p><p>grade= 4;</p><p>else if (score&gt;=75)</p><p>grade=3.5;</p><p>else if (score&gt;=70)</p><p>grade=3;</p><p>else if (score&gt;=65)</p><p>grade=2.5;</p><p>else if (score&gt;=60)</p><p>grade=2;</p><p>else if (score&gt;=55)</p><p>grade=1.5;</p><p>else if (score&gt;=50)</p><p>grade=1;</p><p>else</p><p>grade=0;</p><p>printf("Your's Score = %.2f \n",score);</p><p>printf("Grade = %.1f ",grade);</p><p>getch();</p><p>}</p>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2134382024/315637fae96107d9454e136080173513/image.png" />
         <pubDate>2024-01-31 02:51:00 UTC</pubDate>
         <guid>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2867759970</guid>
      </item>
      <item>
         <title></title>
         <author>cakethanapon4</author>
         <link>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2867761171</link>
         <description><![CDATA[<p>#include&lt;stdio.h&gt;<br>#include&lt;conio.h&gt;<br>int main()<br>{<br>float score;<br>char grade;<br>&nbsp; &nbsp; printf("Input Your Score : ");<br>&nbsp; &nbsp; scanf("%f",&amp;score);<br>&nbsp; &nbsp; if (score&gt;=80)<br>&nbsp; &nbsp; &nbsp; &nbsp; grade= 'A';<br>&nbsp; &nbsp; else if (score&gt;=70)<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; grade='B';<br>&nbsp; &nbsp; &nbsp; &nbsp; else if (score&gt;=60)<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; grade='C';<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; else if (score&gt;=50)<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; grade='D';<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;else<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;grade='F';<br>&nbsp; &nbsp; printf("Your's Score = %.2f \n",score);<br>&nbsp; &nbsp; printf("Grade = %c ",grade);<br>&nbsp; &nbsp; getch();<br>}</p>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2134382024/5b5b4caa453b3c8c227f7c2740065cdb/image.png" />
         <pubDate>2024-01-31 02:52:19 UTC</pubDate>
         <guid>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2867761171</guid>
      </item>
      <item>
         <title>A=85.00</title>
         <author>cakethanapon4</author>
         <link>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2867763496</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2134382024/bcf9bd0499f296bb1876b16065a51310/image.png" />
         <pubDate>2024-01-31 02:54:35 UTC</pubDate>
         <guid>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2867763496</guid>
      </item>
      <item>
         <title>B=75.00</title>
         <author>cakethanapon4</author>
         <link>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2867763964</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2134382024/ee4e5bb2f208660a3a4b1d5d48f3c06d/image.png" />
         <pubDate>2024-01-31 02:55:04 UTC</pubDate>
         <guid>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2867763964</guid>
      </item>
      <item>
         <title>C=75.00</title>
         <author>cakethanapon4</author>
         <link>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2867764275</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2134382024/cb9361188e1ed1aa315836c406c8074a/image.png" />
         <pubDate>2024-01-31 02:55:25 UTC</pubDate>
         <guid>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2867764275</guid>
      </item>
      <item>
         <title>D=55.00</title>
         <author>cakethanapon4</author>
         <link>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2867765203</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2134382024/2d0cf3dce873ade55b070cea6f105c67/image.png" />
         <pubDate>2024-01-31 02:56:26 UTC</pubDate>
         <guid>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2867765203</guid>
      </item>
      <item>
         <title>10.50=F</title>
         <author>cakethanapon4</author>
         <link>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2867765721</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2134382024/11a5413420a8279246177ca3c389f56e/image.png" />
         <pubDate>2024-01-31 02:56:57 UTC</pubDate>
         <guid>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2867765721</guid>
      </item>
      <item>
         <title>80.10=4</title>
         <author>cakethanapon4</author>
         <link>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2867770641</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2134382024/7f0ab51ec91a642ba30330875024901c/image.png" />
         <pubDate>2024-01-31 03:02:03 UTC</pubDate>
         <guid>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2867770641</guid>
      </item>
      <item>
         <title>75.10=3.5</title>
         <author>cakethanapon4</author>
         <link>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2867771116</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2134382024/136cb70429d171cceeb08b319b4de090/image.png" />
         <pubDate>2024-01-31 03:02:35 UTC</pubDate>
         <guid>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2867771116</guid>
      </item>
      <item>
         <title>70.10=3</title>
         <author>cakethanapon4</author>
         <link>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2867771502</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2134382024/f470a4c55c38dce28f6f0a6130333c5b/image.png" />
         <pubDate>2024-01-31 03:02:59 UTC</pubDate>
         <guid>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2867771502</guid>
      </item>
      <item>
         <title>65.30=2.5</title>
         <author>cakethanapon4</author>
         <link>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2867771987</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2134382024/0ff5f0924a13889180adffdc998a018e/image.png" />
         <pubDate>2024-01-31 03:03:25 UTC</pubDate>
         <guid>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2867771987</guid>
      </item>
      <item>
         <title>60.20=2</title>
         <author>cakethanapon4</author>
         <link>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2867773093</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2134382024/a59d9199ce245446b61331532ec89c99/image.png" />
         <pubDate>2024-01-31 03:04:36 UTC</pubDate>
         <guid>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2867773093</guid>
      </item>
      <item>
         <title>55.50=1.5</title>
         <author>cakethanapon4</author>
         <link>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2867773898</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2134382024/9c6db527b5c1e92143a3faec4c93d85b/image.png" />
         <pubDate>2024-01-31 03:05:18 UTC</pubDate>
         <guid>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2867773898</guid>
      </item>
      <item>
         <title>50.50=1</title>
         <author>cakethanapon4</author>
         <link>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2867774415</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2134382024/733834a84eb1ff5cad62d8bd269f3c32/image.png" />
         <pubDate>2024-01-31 03:05:48 UTC</pubDate>
         <guid>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2867774415</guid>
      </item>
      <item>
         <title>40.30=0</title>
         <author>cakethanapon4</author>
         <link>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2867775140</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2134382024/f550d686fa1f4282d0ec757f714c1a26/image.png" />
         <pubDate>2024-01-31 03:06:30 UTC</pubDate>
         <guid>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2867775140</guid>
      </item>
      <item>
         <title>3!=6 ;3x2x1</title>
         <author>cakethanapon4</author>
         <link>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2867776991</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2134382024/a3e04bbf05de99b652d7a3b9f7b57006/image.png" />
         <pubDate>2024-01-31 03:08:09 UTC</pubDate>
         <guid>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2867776991</guid>
      </item>
      <item>
         <title>5!=120; 5x4x3x2x1</title>
         <author>cakethanapon4</author>
         <link>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2867777345</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2134382024/d229cad4cce63f9f9db8bb1438afa5fb/image.png" />
         <pubDate>2024-01-31 03:08:28 UTC</pubDate>
         <guid>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2867777345</guid>
      </item>
      <item>
         <title>7!=5040; 7x6x5x4x3x2x1</title>
         <author>cakethanapon4</author>
         <link>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2867777555</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2134382024/deb421f8b2418e95cc132e750f1c754d/image.png" />
         <pubDate>2024-01-31 03:08:40 UTC</pubDate>
         <guid>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2867777555</guid>
      </item>
      <item>
         <title>1</title>
         <author>cakethanapon4</author>
         <link>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2873183186</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2134382024/b06bc258697efe4d5362bd7c48faebf0/image.png" />
         <pubDate>2024-02-05 07:56:40 UTC</pubDate>
         <guid>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2873183186</guid>
      </item>
      <item>
         <title>2</title>
         <author>cakethanapon4</author>
         <link>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2873183406</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2134382024/b28bf5ea311696e1e33dc32399c88999/image.png" />
         <pubDate>2024-02-05 07:56:54 UTC</pubDate>
         <guid>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2873183406</guid>
      </item>
      <item>
         <title>3</title>
         <author>cakethanapon4</author>
         <link>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2873183678</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2134382024/f24c687838fc34d265f38d79a604a135/image.png" />
         <pubDate>2024-02-05 07:57:12 UTC</pubDate>
         <guid>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2873183678</guid>
      </item>
      <item>
         <title>4</title>
         <author>cakethanapon4</author>
         <link>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2873183975</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2134382024/d262fdf0281f8a48976f0218986e861c/image.png" />
         <pubDate>2024-02-05 07:57:33 UTC</pubDate>
         <guid>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2873183975</guid>
      </item>
      <item>
         <title>5</title>
         <author>cakethanapon4</author>
         <link>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2873184154</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2134382024/2b86228dee7155b9def67f596b5604b2/image.png" />
         <pubDate>2024-02-05 07:57:47 UTC</pubDate>
         <guid>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2873184154</guid>
      </item>
      <item>
         <title>6</title>
         <author>cakethanapon4</author>
         <link>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2873184406</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2134382024/216d797cb05fe9b65834844837806fee/image.png" />
         <pubDate>2024-02-05 07:58:04 UTC</pubDate>
         <guid>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2873184406</guid>
      </item>
      <item>
         <title>6</title>
         <author>cakethanapon4</author>
         <link>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2873184655</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2134382024/f876d7798bd82cdeeb4a2df52d44ec49/image.png" />
         <pubDate>2024-02-05 07:58:21 UTC</pubDate>
         <guid>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2873184655</guid>
      </item>
      <item>
         <title>7</title>
         <author>cakethanapon4</author>
         <link>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2873184841</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2134382024/a6ffe238ae7a9f16341c7543c1b30292/image.png" />
         <pubDate>2024-02-05 07:58:35 UTC</pubDate>
         <guid>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2873184841</guid>
      </item>
      <item>
         <title>8</title>
         <author>cakethanapon4</author>
         <link>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2873185253</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2134382024/5bdda65855bf24899ca28ee358d9e2ff/image.png" />
         <pubDate>2024-02-05 07:59:04 UTC</pubDate>
         <guid>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2873185253</guid>
      </item>
      <item>
         <title>9</title>
         <author>cakethanapon4</author>
         <link>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2873185436</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2134382024/ff9faff07d6d3ff5943570a2cd1efaa7/image.png" />
         <pubDate>2024-02-05 07:59:17 UTC</pubDate>
         <guid>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2873185436</guid>
      </item>
      <item>
         <title>10</title>
         <author>cakethanapon4</author>
         <link>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2873185683</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2134382024/1136f2ed155a10112e75180696744e29/image.png" />
         <pubDate>2024-02-05 07:59:36 UTC</pubDate>
         <guid>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2873185683</guid>
      </item>
      <item>
         <title>11</title>
         <author>cakethanapon4</author>
         <link>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2873185945</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2134382024/e747a010e27c144d3a3a6daf3e8a3964/image.png" />
         <pubDate>2024-02-05 07:59:55 UTC</pubDate>
         <guid>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2873185945</guid>
      </item>
      <item>
         <title>12</title>
         <author>cakethanapon4</author>
         <link>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2873186268</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2134382024/035ad1fddecdf5af5fb2fccaf1bebd46/image.png" />
         <pubDate>2024-02-05 08:00:17 UTC</pubDate>
         <guid>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2873186268</guid>
      </item>
      <item>
         <title>Error</title>
         <author>cakethanapon4</author>
         <link>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2873187342</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2134382024/f93bab93d1a2e8196e76de69d6d7143c/image.png" />
         <pubDate>2024-02-05 08:01:24 UTC</pubDate>
         <guid>https://padlet.com/cakethanapon4/zpf3roax7qopcyre/wish/2873187342</guid>
      </item>
   </channel>
</rss>
