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
#include <stdio.h>

int main()
{
  long a;
  long b;

  scanf("%ld %ld", &a, &b);

  printf("%ld", a + b);
}

Last updated