#P5713. Team Configuration Time Optimization

    ID: 18941 Type: Default 1000ms 256MiB

Team Configuration Time Optimization

Team Configuration Time Optimization

This problem involves deciding between two methods for configuring contest problems. When configuring tasks locally, each problem requires $5$ minutes. Alternatively, when uploading private problems to the Luogu team system, each problem takes $3$ minutes after an initial one-time team creation and configuration cost of $11$ minutes.

Given an integer n representing the number of problems, calculate the total time for both approaches. If the local configuration time ($5\times n$ minutes) is less than the team system time ($11+3\times n$ minutes), output Local. Otherwise, output Luogu.

inputFormat

The input consists of a single integer n (\(1 \le n \le 10^9\)) which denotes the number of problems.

outputFormat

Print Local if \(5\times n < 11+3\times n\); otherwise, print Luogu. Note that if the times are equal, you should output Luogu.

sample

1
Local