<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>유클리드 호제법, 피보나치 수열 그리고 파이썬 by 쏘쏘2</title>
      <link>https://padlet.com/dhthd7257/wsmyp8rdfon5c15o</link>
      <description></description>
      <language>en-us</language>
      <pubDate>2023-12-20 01:30:56 UTC</pubDate>
      <lastBuildDate>2023-12-20 05:23:16 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url></url>
      </image>
      <item>
         <title>반 번호 이름 </title>
         <author>dhthd7257</author>
         <link>https://padlet.com/dhthd7257/wsmyp8rdfon5c15o/wish/2830176669</link>
         <description><![CDATA[<p>코드 복사 붙여넣기 혹은 캡처</p>]]></description>
         <enclosure url="" />
         <pubDate>2023-12-20 01:34:18 UTC</pubDate>
         <guid>https://padlet.com/dhthd7257/wsmyp8rdfon5c15o/wish/2830176669</guid>
      </item>
      <item>
         <title>1103김나연1316 이수아</title>
         <author></author>
         <link>https://padlet.com/dhthd7257/wsmyp8rdfon5c15o/wish/2830255280</link>
         <description><![CDATA[<p>x=int(input())</p><p>y=int(input())</p><p>while True:</p><p>     r=x%y</p><p>     if r==0:</p><p>          print(y)</p><p>          break</p><p>     else:</p><p>          y=x</p><p>          r=y</p><p>    </p>]]></description>
         <enclosure url="" />
         <pubDate>2023-12-20 03:00:13 UTC</pubDate>
         <guid>https://padlet.com/dhthd7257/wsmyp8rdfon5c15o/wish/2830255280</guid>
      </item>
      <item>
         <title>10315 이려흔 10121 최희수</title>
         <author></author>
         <link>https://padlet.com/dhthd7257/wsmyp8rdfon5c15o/wish/2830256061</link>
         <description><![CDATA[<p>a=int(input())</p><p>b=int(input())</p><p>while True:</p><p>      r=a%b</p><p>      if r==0:</p><p>            print(b)</p><p>            break</p><p>      else:</p><p>            a=b</p><p>            b=r</p>]]></description>
         <enclosure url="" />
         <pubDate>2023-12-20 03:00:55 UTC</pubDate>
         <guid>https://padlet.com/dhthd7257/wsmyp8rdfon5c15o/wish/2830256061</guid>
      </item>
      <item>
         <title>★&lt;10615이소민 10901강성은&gt;♥</title>
         <author></author>
         <link>https://padlet.com/dhthd7257/wsmyp8rdfon5c15o/wish/2830257279</link>
         <description><![CDATA[<p>x=int(input('숫자입력해'))</p><p>y=int(input('숫자입력해'))</p><p>while True:</p><p>     r=x%y</p><p>     if r==0:</p><p>          print(y)</p><p>          break</p><p>    else:</p><p>          x=y</p><p>          y=x</p><p><br/></p>]]></description>
         <enclosure url="" />
         <pubDate>2023-12-20 03:02:09 UTC</pubDate>
         <guid>https://padlet.com/dhthd7257/wsmyp8rdfon5c15o/wish/2830257279</guid>
      </item>
      <item>
         <title>1709류지민</title>
         <author></author>
         <link>https://padlet.com/dhthd7257/wsmyp8rdfon5c15o/wish/2830257932</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2260777533/a611501916aecadf9133242ccc729a4a/image.png" />
         <pubDate>2023-12-20 03:02:52 UTC</pubDate>
         <guid>https://padlet.com/dhthd7257/wsmyp8rdfon5c15o/wish/2830257932</guid>
      </item>
      <item>
         <title>1818 최하늬</title>
         <author></author>
         <link>https://padlet.com/dhthd7257/wsmyp8rdfon5c15o/wish/2830258591</link>
         <description><![CDATA[<p>x=int(input())</p><p>y=int(input())</p><p>while True:</p><p>    r=x%y</p><p>    if r==0:</p><p>        print(y)</p><p>        break</p><p>    else:</p><p>        x=y</p><p>        y=r</p>]]></description>
         <enclosure url="" />
         <pubDate>2023-12-20 03:03:27 UTC</pubDate>
         <guid>https://padlet.com/dhthd7257/wsmyp8rdfon5c15o/wish/2830258591</guid>
      </item>
      <item>
         <title>1605 김수민</title>
         <author></author>
         <link>https://padlet.com/dhthd7257/wsmyp8rdfon5c15o/wish/2830260643</link>
         <description><![CDATA[<p>a=int(input())</p><p>b=int(input())</p><p>while True:</p><p>     c=a%b</p><p>     if c==0:</p><p>          print(b)</p><p>          break</p><p>     else:</p><p>          a=b</p><p>          b=c</p><p>          </p><p>        </p>]]></description>
         <enclosure url="" />
         <pubDate>2023-12-20 03:05:30 UTC</pubDate>
         <guid>https://padlet.com/dhthd7257/wsmyp8rdfon5c15o/wish/2830260643</guid>
      </item>
      <item>
         <title>1903 권효림</title>
         <author></author>
         <link>https://padlet.com/dhthd7257/wsmyp8rdfon5c15o/wish/2830264270</link>
         <description><![CDATA[<p>x=int(input("원하는 자연수를 적어주세요 : "))</p><p>y=int(input("원하는 자연수를 적어주세요 : "))</p><p>while True:</p><p>  r=x%y</p><p>  if r==0:</p><p>    print("최대공약수 :",y)</p><p>    break</p><p>  else:</p><p>    x=y</p><p>    y=r</p><p><br/></p>]]></description>
         <enclosure url="" />
         <pubDate>2023-12-20 03:09:20 UTC</pubDate>
         <guid>https://padlet.com/dhthd7257/wsmyp8rdfon5c15o/wish/2830264270</guid>
      </item>
      <item>
         <title>1116 이나윤, 1215 이지원</title>
         <author></author>
         <link>https://padlet.com/dhthd7257/wsmyp8rdfon5c15o/wish/2830266676</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2260777536/c31fec7f88f49751e9d146e09332f0d2/image.png" />
         <pubDate>2023-12-20 03:11:56 UTC</pubDate>
         <guid>https://padlet.com/dhthd7257/wsmyp8rdfon5c15o/wish/2830266676</guid>
      </item>
      <item>
         <title>1114 윤하영</title>
         <author></author>
         <link>https://padlet.com/dhthd7257/wsmyp8rdfon5c15o/wish/2830267142</link>
         <description><![CDATA[<p><br/></p><p>a=int(input('첫번째:'))</p><p>b=int(input('두번째:'))</p><p>while True:</p><p>         c=int(a%b)</p><p>         if c==0:</p><p>                  print(b)</p><p>                  break</p><p>         else:</p><p>                  a=b</p><p>                  b=c</p>]]></description>
         <enclosure url="" />
         <pubDate>2023-12-20 03:12:28 UTC</pubDate>
         <guid>https://padlet.com/dhthd7257/wsmyp8rdfon5c15o/wish/2830267142</guid>
      </item>
      <item>
         <title>1109 박효신</title>
         <author></author>
         <link>https://padlet.com/dhthd7257/wsmyp8rdfon5c15o/wish/2830267181</link>
         <description><![CDATA[<p>a=int(input())</p><p>b=int(input())</p><p>while True:</p><p>   c=int(a%b)</p><p>   if  c==0:</p><p>        print(b)</p><p>        break</p><p>   else:</p><p>        a=b</p><p>        b=c</p>]]></description>
         <enclosure url="" />
         <pubDate>2023-12-20 03:12:31 UTC</pubDate>
         <guid>https://padlet.com/dhthd7257/wsmyp8rdfon5c15o/wish/2830267181</guid>
      </item>
      <item>
         <title>1301 강민정 1422 허린</title>
         <author></author>
         <link>https://padlet.com/dhthd7257/wsmyp8rdfon5c15o/wish/2830268691</link>
         <description><![CDATA[<p>a=int(input("a의 값을 입력하세요."))</p><p>b=int(input("b의 값을 입력하세요."))</p><p>r= int(a%b)</p><p>print(a%b)</p><p>if a%b==0:</p><p>                print(b)</p><p>else:</p><p>                while a%b!=0:</p><p>                                a=b</p><p>                                b=r</p><p>                                r= int(a%b)</p><p>                                print(b)</p>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2029631281/f7556473f5e5871a50066e59293e4acc/image.png" />
         <pubDate>2023-12-20 03:14:14 UTC</pubDate>
         <guid>https://padlet.com/dhthd7257/wsmyp8rdfon5c15o/wish/2830268691</guid>
      </item>
      <item>
         <title>1417 이예승 1419 이정원</title>
         <author></author>
         <link>https://padlet.com/dhthd7257/wsmyp8rdfon5c15o/wish/2830268731</link>
         <description><![CDATA[<p>a=int(input("첫번째 수를 입력하시오"))</p><p>b=int(input("두번째 수를 입력하시오"))</p><p>while b: a,b=b,a%b</p><p>print(f"최대공약수: {a}")</p>]]></description>
         <enclosure url="" />
         <pubDate>2023-12-20 03:14:17 UTC</pubDate>
         <guid>https://padlet.com/dhthd7257/wsmyp8rdfon5c15o/wish/2830268731</guid>
      </item>
      <item>
         <title>1709류지민</title>
         <author></author>
         <link>https://padlet.com/dhthd7257/wsmyp8rdfon5c15o/wish/2830281505</link>
         <description><![CDATA[<p>n=int(input())</p><p>pibo=[1,1]</p><p>for a in range (1,n-1):</p><p>    pibo.append(pibo[a]+pibo[a-1])</p><p>if n==1:</p><p>    print(1)</p><p>else:</p><p>    print(pibo)</p><p>        </p>]]></description>
         <enclosure url="" />
         <pubDate>2023-12-20 03:31:14 UTC</pubDate>
         <guid>https://padlet.com/dhthd7257/wsmyp8rdfon5c15o/wish/2830281505</guid>
      </item>
      <item>
         <title>1903 권효림</title>
         <author></author>
         <link>https://padlet.com/dhthd7257/wsmyp8rdfon5c15o/wish/2830336997</link>
         <description><![CDATA[<p>pibo=[1,1]</p><p>N=int(input("원하는 자연수를 입력하세요 : "))</p><p>for i in range(N-2):</p><p>  pibo.append(pibo[i]+pibo[i+1])</p><p>print(pibo)</p>]]></description>
         <enclosure url="" />
         <pubDate>2023-12-20 05:03:27 UTC</pubDate>
         <guid>https://padlet.com/dhthd7257/wsmyp8rdfon5c15o/wish/2830336997</guid>
      </item>
      <item>
         <title>1116 이나윤, 1215이지원</title>
         <author></author>
         <link>https://padlet.com/dhthd7257/wsmyp8rdfon5c15o/wish/2830339527</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2260777536/7e03341bc475a2113406b6724688ef12/image.png" />
         <pubDate>2023-12-20 05:07:19 UTC</pubDate>
         <guid>https://padlet.com/dhthd7257/wsmyp8rdfon5c15o/wish/2830339527</guid>
      </item>
      <item>
         <title>㈜♨&lt;1615 이소민 1901 강성은&gt;♨♬</title>
         <author></author>
         <link>https://padlet.com/dhthd7257/wsmyp8rdfon5c15o/wish/2830340729</link>
         <description><![CDATA[<p>n=int(input('몇 번째까지 출력할까?'))</p><p>pibo=[1,1]</p><p>a=0</p><p>while a&lt;n:</p><p>     pibo.append(pibo[a]+pibo[a+1])</p><p>     a=a+1</p><p>     if a+2==n:</p><p>          print(pibo)</p><p>          break</p>]]></description>
         <enclosure url="" />
         <pubDate>2023-12-20 05:09:13 UTC</pubDate>
         <guid>https://padlet.com/dhthd7257/wsmyp8rdfon5c15o/wish/2830340729</guid>
      </item>
      <item>
         <title>1103김나연</title>
         <author></author>
         <link>https://padlet.com/dhthd7257/wsmyp8rdfon5c15o/wish/2830340925</link>
         <description><![CDATA[<p>N=int(input())</p><p>pibo=[1,1]</p><p>for i in range(N-2):</p><p>     pibo.append(pibo[i]+pibo[i+1])</p><p>     print(pibo)</p><p><br/></p>]]></description>
         <enclosure url="" />
         <pubDate>2023-12-20 05:09:31 UTC</pubDate>
         <guid>https://padlet.com/dhthd7257/wsmyp8rdfon5c15o/wish/2830340925</guid>
      </item>
      <item>
         <title>10315 이려흔 10121 최희수</title>
         <author></author>
         <link>https://padlet.com/dhthd7257/wsmyp8rdfon5c15o/wish/2830341027</link>
         <description><![CDATA[<p>n= int(input())</p><p>pi = [1,1]</p><p>a=0</p><p>b=1</p><p>while True:</p><p>      c=pi[a]+pi[b]</p><p>      a=a+1</p><p>      b=b+1</p><p>      if b==n:</p><p>            print(pi)</p><p>            break</p><p>      else:</p><p>            pi.append(c)</p>]]></description>
         <enclosure url="" />
         <pubDate>2023-12-20 05:09:41 UTC</pubDate>
         <guid>https://padlet.com/dhthd7257/wsmyp8rdfon5c15o/wish/2830341027</guid>
      </item>
      <item>
         <title>1114 윤하영</title>
         <author></author>
         <link>https://padlet.com/dhthd7257/wsmyp8rdfon5c15o/wish/2830342270</link>
         <description><![CDATA[<p>pibo=[1,1]</p><p>n=int(input('원하는 수 입력:'))</p><p>for i in range(1,n-1):</p><p>         pibo.append(pibo[i]+pibo[i-1])</p><p>         print(pibo)</p>]]></description>
         <enclosure url="" />
         <pubDate>2023-12-20 05:11:32 UTC</pubDate>
         <guid>https://padlet.com/dhthd7257/wsmyp8rdfon5c15o/wish/2830342270</guid>
      </item>
      <item>
         <title>1417 이예승 1419 이정원</title>
         <author></author>
         <link>https://padlet.com/dhthd7257/wsmyp8rdfon5c15o/wish/2830343802</link>
         <description><![CDATA[<p>N=int(input())</p><p>pibo=[1,1]</p><p>for i in range(N-2):</p><p>    pibo.append(pibo[i]+pibo[i+1])</p><p>    print(pibo)</p>]]></description>
         <enclosure url="" />
         <pubDate>2023-12-20 05:13:59 UTC</pubDate>
         <guid>https://padlet.com/dhthd7257/wsmyp8rdfon5c15o/wish/2830343802</guid>
      </item>
      <item>
         <title>6반 3민지 5수민</title>
         <author></author>
         <link>https://padlet.com/dhthd7257/wsmyp8rdfon5c15o/wish/2830343898</link>
         <description><![CDATA[<p>n=int(input())</p><p>pibo=[1,1]</p><p>for i in range(n-2):</p><p>     pibo.append(pibo[i]+pibo[i+1])</p><p>     print(pibo)</p><p>     </p>]]></description>
         <enclosure url="" />
         <pubDate>2023-12-20 05:14:08 UTC</pubDate>
         <guid>https://padlet.com/dhthd7257/wsmyp8rdfon5c15o/wish/2830343898</guid>
      </item>
      <item>
         <title>1818 최하늬</title>
         <author></author>
         <link>https://padlet.com/dhthd7257/wsmyp8rdfon5c15o/wish/2830346885</link>
         <description><![CDATA[<p>N=int(input())</p><p>pibo=[1,1]</p><p>for i in range(N-2):</p><p>    pibo.append(pibo[i]+pibo[i+1])</p><p>    </p><p>print(pibo)</p><p><br></p>]]></description>
         <enclosure url="" />
         <pubDate>2023-12-20 05:18:49 UTC</pubDate>
         <guid>https://padlet.com/dhthd7257/wsmyp8rdfon5c15o/wish/2830346885</guid>
      </item>
      <item>
         <title>1109박효신</title>
         <author></author>
         <link>https://padlet.com/dhthd7257/wsmyp8rdfon5c15o/wish/2830349282</link>
         <description><![CDATA[<p><br/></p><p><br>n=int(input())</p><p>pibo=[1,1]</p><p>for a in range (1,n-1):</p><p>pibo.append(pibo[a]+pibo[a-1])</p><p>if n==1:</p><p>print(1)</p><p>else:</p><p>print(pibo)</p><p><br/></p><p><br/></p><p><br></p>]]></description>
         <enclosure url="" />
         <pubDate>2023-12-20 05:23:16 UTC</pubDate>
         <guid>https://padlet.com/dhthd7257/wsmyp8rdfon5c15o/wish/2830349282</guid>
      </item>
   </channel>
</rss>
