import sequtils, strutils var a: seq[int] = stdin.readline.split.map(parseInt) s: string = stdin.readline ans: int = a[0] + a[1] echo ans, ' ', s