mirror of
https://github.com/ada-dmitry/TMP_C712.git
synced 2026-09-24 09:10:16 +00:00
14 lines
156 B
C
14 lines
156 B
C
#include <stdio.h>
|
|
|
|
int main()
|
|
{
|
|
int day, n, ans;
|
|
|
|
scanf("%d%d", &n, &day);
|
|
|
|
ans = (n - day) / 7 + 1;
|
|
|
|
printf("%d\n", ans);
|
|
|
|
return 0;
|
|
} |