var x: Integer; begin writeln('x: ');Readln(x); if x = 0 then x:=x+7 else x:=x-3; writeln(x); end.