Set 100Question 68

Shanto's Average Finder

Very easyWritten in CMust finish in 2 seconds

Shanto needs the average of two scores recorded at a campus canteen, printed as an integer (floor division).

What your program reads

Two integers A B.

What your program prints

floor((A+B)/2).

Limits

-10^6 ≤ A,B ≤ 10^6

Example input

256 896

Expected output

576
main.c

Your work is saved in this browser as you type.

Loading editor…
Input for Run

Run tries your code on the input above and shows what it prints. Submit checks your output against every test, including hidden ones.

Shortcut: Ctrl + Enter sends it to the judge.

Shanto's Average Finder · DIU ContestHub