4 lines
90 B
Text
4 lines
90 B
Text
|
|
string line = Stdio.stdin->gets();
|
||
|
|
sscanf(line, "%d %d", int a, int b);
|
||
|
|
write(a+b +"\n");
|