-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMain.java
More file actions
30 lines (24 loc) · 685 Bytes
/
Copy pathMain.java
File metadata and controls
30 lines (24 loc) · 685 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package io.github.tahanima.beecrowd._1013;
import java.util.Scanner;
/**
* @author tahanima
*/
public class Main {
/**
* @param a denotes the first number
* @param b denotes the second number
* @param c denotes the third number
* @return a string containing the answer
*/
public static String solve(int a, int b, int c) {
// Implement this method
return "";
}
/**
* Takes care of the problem's input and output.
*/
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.println(solve(scanner.nextInt(), scanner.nextInt(), scanner.nextInt()));
}
}