From 3c0bbb7e526206e1ad6f41ee159b8dd60f1c68b9 Mon Sep 17 00:00:00 2001 From: Muhammad Nauman Raza Date: Wed, 29 Jan 2025 12:36:50 +0000 Subject: [PATCH] solutions: 688B --- solutions/python/688B.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 solutions/python/688B.py diff --git a/solutions/python/688B.py b/solutions/python/688B.py new file mode 100644 index 0000000..4fbd892 --- /dev/null +++ b/solutions/python/688B.py @@ -0,0 +1,3 @@ +n = input() + +print(n+n[::-1])