5 lines
102 B
Text
5 lines
102 B
Text
void main() {
|
|
string a, b;
|
|
scan(gets(stdin), "%d %d", &a, &b);
|
|
puts(((int)a + (int)b));
|
|
}
|