10 lines
110 B
C
10 lines
110 B
C
|
#include <stdio.h>
|
||
|
int main()
|
||
|
{
|
||
|
int x;
|
||
|
int y;
|
||
|
scanf("%d%d", &x, &y);
|
||
|
printf("%d", x - y);
|
||
|
return 0;
|
||
|
}
|