Begin
Writeln("Introdu masurile unghiurilor A si B.");
Write("A="); Readln(a);
Write("B="); Readln(b);
if (a + b >= 180) then Writeln("Nu se poate forma astfel de triunghi");
Else c := 180 - a - b;
Writeln("Marimea unghiului C este: ", c);
Readkey;
End.
P.S. Declari 3 variabile: a, b şi c de tip integer)