Post History
Python 3, 63 bytes print(str(eval(f"({input().replace(' ',')*(')})")).strip("()")) Try it online! Similar to hyper-neutrino's answer. Doesn't replace i by j and back, and uses f-string instea...
Answer
#1: Initial revision
# [Python 3](https://www.python.org/), 63 bytes ```python print(str(eval(f"({input().replace(' ',')*(')})")).strip("()")) ``` [Try it online!](https://tio.run/##FcpLCoAgFAXQrYgT7@sjpCuSMFLEHmZBRGu3Gh44fNV1y7Y1LiFX7LXAny5hkbhD5qOCdPGc3OyhhBoUdVD0kCTSXw4MiR@tTb2Jwow2vg "Python 3 – Try It Online") Similar to hyper-neutrino's answer. Doesn't replace _i_ by _j_ and back, and uses f-string instead of strings and `+` to make it a bit shorter.