-
Hajipur, Bihar, 844101
Sharpen your programming skills by solving a new C Programming coding problem everyday!
12 8
20
To unlock the official solution code and explanation, you must successfully solve today's challenge or wait for today's challenge to end.
#include <stdio.h>
int main() {
int a, b;
if (scanf("%d %d", &a, &b) == 2) {
printf("%d", a + b);
}
return 0;
}