#K64557. Add Two Strings
Add Two Strings
Add Two Strings
Given two non-negative integers represented as strings, your task is to compute their sum and return it as a string.
Let ( num1 ) and ( num2 ) be two non-negative integers in string format. You need to calculate ( num1 + num2 ) and output the result, also as a string.
inputFormat
The input is provided via standard input (stdin) in two lines. The first line contains the string representing the first non-negative integer, and the second line contains the string representing the second non-negative integer. There will be no extra leading zeros except for the number zero itself.
outputFormat
Output the sum of the two given numbers as a string on a single line via standard output (stdout).## sample
11
123
134