public class test
{
public static void main(String args[])throws IOException
{
int a;
String str;
BufferedReader buf;
buf=new BufferedReader(new InputStreamReader(System.in));
str=buf.readLine();
a=Integer.parseInt(str);
System.out.println("a="+a);
}
}
阅读(568) | 评论(0) | 转发(0) |