import std.stdio; void main() { int a, b; string s; readf("%s %s\n", &a, &b); readf("%s\n", &s); writef("%d %s\n", a+b, s); }