monkeyslut45

Кирилл Деменев

Oct 21st, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.44 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class Main {
  4.  
  5.     public static void main(String[] args)
  6.     {
  7.         int a, b, c;
  8.         Scanner in = new Scanner(System.in);
  9.         //типПеременной имяПеременной = new типПеременной();
  10.         a = in.nextInt();
  11.         b = in.nextInt();
  12.         c = in.nextInt();
  13.         System.out.print(a);
  14.         System.out.print(b);
  15.         System.out.print(c);
  16.     }
  17. }
Add Comment
Please, Sign In to add comment