C
Input: Standard Input (stdin)
Output: Standard Output (stdout)
Memory limit: 100 megabytes
Time limit: 1.0 seconds
Output: Standard Output (stdout)
Memory limit: 100 megabytes
Time limit: 1.0 seconds
Example
Adding two numbers. Numbers will be space separated on a single line.
#include "stdio.h"
int main (void) {
int a, b;
scanf("%d %d", &a, &b);
printf("%d", a + b);
}
Submit
- Go to the submit tab and upload the addition program above by copy-pasting and selecting C in the language dropdown.
-
Sample Input 1
3 4
Sample Output 1
7