Skip to content

Commit

Permalink
2058 C
Browse files Browse the repository at this point in the history
  • Loading branch information
LucasPLopes committed Dec 15, 2019
1 parent acda93a commit 7e55b8a
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions C/2058.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#include <stdio.h>

#define MIN_TRI(x) (x - 2)

int main()
{
int ent;

scanf("%d", &ent);
printf("%d\n", MIN_TRI(ent));

return 0;
}

0 comments on commit 7e55b8a

Please sign in to comment.