Add Two Numbers
Question
Solution
Idea
This is another "give-away" question. Suitable for beginners.
Code
https://github.com/mendax1234/Coding-Problems/blob/main/kattis/addtwonumbers/addtwonumbers.c
Last updated
This is another "give-away" question. Suitable for beginners.
Last updated
#include <stdio.h>
int main()
{
long a;
long b;
scanf("%ld %ld", &a, &b);
printf("%ld", a + b);
}