test JOJ: A+B Problem

test JOJ: A+B Problem

You cannot submit for this problem because the homework's deadline is due.

Background

It's a JOJ test. Please write a C programme called test.c to accept two integars input and output their sum. Then upload a zip file with test.c.

Since this is only a test, I'll give you the answer. In "test.c", you can write these codes.

#include<stdio.h>
int main()
{
    int a,b,c;
    scanf("%d %d",&a,&b);
    c=a+b;
    printf("%d\n",c);
    return 0;
}

test JOJ

Not Claimed
Status
Finished
Problems
1
Open Since
2021-09-20 00:00
DDL
2021-10-31 23:59
Extension
120.0 hour(s)