I tried it with a String it gave the same error.
package com.codegym.task.task02.task0218;
/*
Repetition is the mother of all learning
*/
public class Solution {
public static void print3(String s) {
System.out.print("I love you!");
System.out.print("I love you!");
System.out.print("I love you!");//write your code here
}
public static void main(String[] args) {
print3("I love you!");
}
}