How to supply command line arguments for java porgrams

I’ve a submitted code for ATM problem under EASY section.
My code ran well in my pc with meeting code & execution time constraints.

In this platform, my code passed compilation stage too.And i get an run time error called NZEC.

The problem is I don’t know how to supply command line arguments for this platform.

Please tell me how to do that here

You don’t need to supply any command line arguments.

All input is to be taken from the standard input (stdin, or System.in in Java terminology).

1 Like

Sample Solutions | CodeChef gives a sample solution to the problem TEST Problem - CodeChef

See the sample solution to understand how input-output is done in codechef.

Cheers!