import java.io.*;
public class Solution {
public static void main(String[] args) throws Exception {
int i = 0;
while(i < 10){
int f = 0;
while(f < 10){
System.out.print("$ ");
f++;
}
System.out.println("\n");
i++;
}
}
}
package com.codegym.task.task04.task0433;
/*
Seeing dollars in your future
*/
import java.io.*;
public class Solution {
public static void main(String[] args) throws Exception {
int i = 0;
while(i < 10){
int f = 0;
while(f < 10){
System.out.print("$ ");
f++;
}
System.out.println("\n");
i++;
}
}
}