Its working and there's no errors when I chose run button instead of verify;
is there any wrong with my codes?
package com.codegym.task.task01.task0107;
/*
No comments needed
*/
public class Solution {
public static void main(String[] args) {
int x = 2;
int y = 12;
// Display 12 and 2 numbers
System.out.println(y);
System.out.println(x);
}
}