ackage com.codegym.task.task01.task0108;
/*
2 + 3 = 5
*/
public class Solution {
public static void main(String[] args) {
int a = 3, b = 2;
/*System.out.print("two");*/
System.out.print(b);
System.out.print(" plus ");
/*System.out.print(" minus ");*/
System.out.print(a);
/*System.out.print("three");*/
System.out.print(" is equal to ");
/*System.out.print(" equals ");*/
/*System.out.print("five");*/
System.out.print(a + b);
}
}
what is wrong with my code why is not verified
Under discussion
Comments (1)
- Popular
- New
- Old
You must be signed in to leave a comment
Guadalupe Gagnon
3 January 2019, 18:58
this task was bugged for a few weeks. It no longer is.
0