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