This commit is contained in:
HeshamTB 2019-01-17 20:25:43 +03:00
parent df3967357d
commit 130922c573

8
src/Two.java Normal file
View File

@ -0,0 +1,8 @@
public class Two {
public static void main(String[] args) {
System.out.println( ( 8 * 4 * 2 + 6 ) / 2 + 4 );
}
}