If ElseIf

Beginner Problems Language Basics Easy

Given marks of a student, print on the screen:

  • Grade A if marks >= 90
  • Grade B if marks >= 70
  • Grade C if marks >= 50
  • Grade D if marks >= 35
  • Fail, otherwise.


For printing use:-

  • for C++ : cout << variable_name;
  • for Java : System.out.print();
  • for Python : print()
  • for Javascript : console.log()


Please point to new line after you print the output.

Examples:

Input: marks = 95

Output: Grade A

Explanation: marks are greater than or equal to 90.

Input: marks = 14

Output: Fail

Explanation: marks are less than 35.

Input: marks = 70

Constraints

  • 0 <= marks <= 100

Company Tags

TCS Cognizant Accenture Infosys Capgemini Wipro IBM HCL Tech Mahindra MindTree