Skip to content

2235-add-two-integers

DevGod
DevGod
Vtuber
int sum(int num1, int num2) {
return num1+num2;
}