Блок схема для программы program project2; {$apptype console} uses sysutils; var a,b,c: integer; function nod(a,b: integer): integer; begin while a< > b do if a> b then a: =a-b else b: =b-a; nod: =a; end; begin write('vvedite a,b,c: '); readln(a,b,c); writeln('nod(a,b,c): ',nod(nod(a,b),c)); readln; end.