<?xml version="1.0"?>
<flowgorithm fileversion="3.0">
    <attributes>
        <attribute name="name" value=""/>
        <attribute name="authors" value="ionel"/>
        <attribute name="about" value=""/>
        <attribute name="saved" value="2023-03-21 08:27:19 "/>
        <attribute name="created" value="aW9uZWw7TEFQVE9QLTdEMlE0TkpHOzIwMjMtMDMtMjE7IjA2OjQ0OjMyICI7Mjc2MA=="/>
        <attribute name="edited" value="aW9uZWw7TEFQVE9QLTdEMlE0TkpHOzIwMjMtMDMtMjE7IjA2OjQ0OjQyICI7MTtjYW1pbDtDQU1JTExBU1BFUlNPTkE7MjAyMy0wMy0yMTsiMDQ6NTg6MzUgIjtMQUJfY2FsY29sYXRyaWNlX3doaWxlLmZwcmc7ODQ4MQ=="/>
        <attribute name="edited" value="aW9uZWw7TEFQVE9QLTdEMlE0TkpHOzIwMjMtMDMtMjE7IjA3OjAzOjU2ICI7MjsxMjk5OTQ0MztJTkZPUk0wMTsyMDIzLTAzLTA4OyIxMjozOToxMSAiOzE4LmZwcmc7NTc0Mg=="/>
        <attribute name="edited" value="aW9uZWw7TEFQVE9QLTdEMlE0TkpHOzIwMjMtMDMtMjE7IjA3OjA2OjMxICI7MjsyODY3"/>
        <attribute name="edited" value="Ym9tYWw7TVNJOzIwMjMtMDMtMjE7IjA4OjI3OjE5ICI7MjsyMDYw"/>
    </attributes>
    <function name="Main" type="None" variable="">
        <parameters/>
        <body>
            <declare name="n" type="Integer" array="False" size=""/>
            <declare name="rf" type="Boolean" array="False" size=""/>
            <assign variable="rf" expression="true"/>
            <declare name="rs" type="String" array="False" size=""/>
            <while expression="rf">
                <output expression="&quot;Inserisci la tua lingua:&quot;" newline="True"/>
                <output expression="&quot;0 = italiano&quot;" newline="True"/>
                <output expression="&quot;1 = inglese&quot;" newline="True"/>
                <output expression="&quot;2 = francese&quot;" newline="True"/>
                <input variable="n"/>
                <while expression="(n&lt;0 || n&gt;2)">
                    <output expression="&quot;ERRORE&quot;" newline="True"/>
                    <input variable="n"/>
                </while>
                <if expression="(n==0)">
                    <then>
                        <output expression="&quot;CIAO AMIO&quot;" newline="True"/>
                    </then>
                    <else>
                        <if expression="(n==1)">
                            <then>
                                <output expression="&quot;HELLO&quot;" newline="True"/>
                            </then>
                            <else>
                                <output expression="&quot;SALUT&quot;" newline="True"/>
                            </else>
                        </if>
                    </else>
                </if>
                <output expression="&quot;Vuoi rifare? (Si o No)&quot;" newline="True"/>
                <input variable="rs"/>
                <while expression="(rs!=&quot;Si&quot; &amp;&amp; rs!=&quot;No&quot; &amp;&amp; rs!=&quot;SI&quot; &amp;&amp; rs!=&quot;NO&quot;)">
                    <output expression="&quot;ERRORE&quot;" newline="True"/>
                    <input variable="rs"/>
                </while>
                <if expression="(rs=&quot;Si&quot; || rs= &quot;SI&quot;)">
                    <then/>
                    <else>
                        <output expression="&quot;OK&quot;" newline="True"/>
                        <assign variable="rf" expression="false"/>
                    </else>
                </if>
            </while>
        </body>
    </function>
</flowgorithm>
