import java.util.*;
public class Main
{
static void main(String[] args)
{
System.out.print("Enter the amount of celsius: ");
int celsius = Integer.parseInt(new Scanner(System.in).nextLine());
System.out.printf("Kelvin = %1$s" + "\r\n", celsius + 273);
System.out.printf("Fahrenheit = %1$s" + "\r\n", celsius * 18 / 10 + 32);
}
}