Hi ! can u tell me what is wrong with this code. Because at this point i have no idea of what wrong ..
Thanks in advance
package com.codegym.task.task01.task0137;
/*
Only 20 will do
*/
public class Solution {
public static void main(String[] args)
{
int a = 5;
int b = 5;
int c = 5;
int d = 5;
int result = a+b+c+d;
System.out.printIn(result);
}
}
}