Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.Scanner;
- public class Main {
- public static void main( String[] args )
- {
- Scanner scan = new Scanner(System.in);
- int e = scan.nextInt();
- for( int i = 0; i < e; i++ )
- {
- int a = scan.nextInt();
- int b = scan.nextInt();
- int c = scan.nextInt();
- System.out.println( (c==(a+b) ? "Correct!" : "Wrut Row!") );
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement