language: Pascal (gpc) (gpc 20070904)
date: 104 days 5 hours ago
link:
visibility: public
1
2
3
4
5
6
7
Program exereasy (input,output);
var N,c:integer;
begin
  readln(N);
  c:=N div 10 mod 10;
  writeln(c);
end.