import strutils, sequtils let ab: seq[int] = stdin.readLine.split.map(parseInt) let s: string = stdin.readLine echo repr(ab[0] + ab[1]) & " " & s