cant compile the code...please help me!
import java.io.*;
class football
{
public static void main(String args[])throws IOException
{
BufferedReader stdin = newBufferedReader(newInputStreamReader(System.in))
String str;
int num_team,num_win,num_draw,total_point,point;
for(num_team=1;num_team;num_team++)
System.out.print("Enter team compete");
str=stdin.readLine();
num_team=Integer.parseInt(str);
System.out.print("Team 1");
System.out.print("Enter total win");
str=stdin.readLine();
num_win=Integer.parseInt(str);
System.out.print("Enter total draw");
str=stdin.readLine();
num_draw=Integer.parseInt(str);
total_point=(num_win*3)+(num_draw);
System.out.print("Total point for team 1 is" + num_team);
}
}