include <stdio.h> int main() { int time; scanf("%d", &time); int fee = (time < 3) ? 5 : 20; printf("%d\n", fee); return 0; }