import strutils import sequtils proc getInt() : int = parseInt(readLine(stdin)) proc getInts() : seq[int] = readLine(stdin).split().map(parseInt) var a = getInt() var bc = getInts() var s = readLine(stdin) # カンマ区切りで出力を次々にしていく echo a + bc[0] + bc[1] , " " , s