6 lines
67 B
C++
6 lines
67 B
C++
#include <iostream>
|
|
|
|
int difference(int a, int b)
|
|
{
|
|
return a-b;
|
|
} |