import io;
template <T>T addAndPrint(T a, T b) {
print(a+b);
return a+b;
}
int main() {
addAndPrint<int>(10,12);
print("\n");
return 0;