Calculate A + B.
Each line will contain two integers A and B. Process to end of file.
For each case, output A + B in one line.
1 | 1 1 |
1 | 2 |
This is the most easy problem. The main point is processing to end of file.
In computing, end-of-file (commonly abbreviated EOF[1]) is a condition in a computer operating system where no more data can be read from a data source. The data source is usually called a file or stream.
In the C Standard Library, the character reading functions such as getchar return a value equal to the symbolic value (macro)
EOF
to indicate that an end-of-file condition has occurred. The actual value ofEOF
is implementation-dependent (but is commonly -1, such as in glibc[2]) and is distinct from all valid character codes. Block-reading functions return the number of bytes read, and if this is fewer than asked for, then the end of file was reached or an error occurred (checking oferrno
or dedicated function, such asferror
is often required to determine which).—From Wikipedia
1 |
|
In C++ ways, the end of line goes like this.
1 |
|