about summary refs log tree commit diff
path: root/others/volume1/030.pas
blob: ffa983befab21259a98a00b4539b6cfd571efae7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
uses clib;

var
  s: ansistring;

begin
  readln(s);
  if ispalindrome(s) then
    writeln('YES')
  else
    writeln('NO')
end.