SHARE
TWEET
Untitled
a guest
Jan 29th, 2018
49
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
- using System;
- public class Program
- {
- public static void Main()
- {
- var rad = double.Parse(Console.ReadLine());
- var deg = Math.Round(rad * 180 / Math.PI, 2);
- Console.WriteLine(deg);
- }
- }
RAW Paste Data

