Last updated 2 months ago
This is another "give-away" question. Suitable for beginners.
#include <stdio.h> int main() { long a; long b; scanf("%ld %ld", &a, &b); printf("%ld", a + b); }