You are on page 1of 1

import java.io.

*;
class abc
{
public static void main(String args[])
throws IOException
{
BufferedReader br=new BufferedReader(new InputStreamReader(Syste
m.in));
int a=Integer.parseInt(br.readLine());
System.out.println(a);
}
}

You might also like