Java Stdin and Stdout I

  • + 10 comments

    import java.util.* public class Solution {

    public static void main(String[] args) {
      Scanner sc=new Scanner(System.in);
      int a,b,c=sc.nextInt();
      a=42;
      b=100;
      c=125;
      System.out.println(a);
         System.out.println(b);
         System.out.println(c);
    
    
    
    }
    

    } Whats the mistake i've done in my code??pls help me