package com.codegym.task.task05.task0532; import java.io.*; /* Task about algorithms */ public class Solution { public static void main(String[] args) throws Exception { BufferedReader reader = new BufferedReader(new InputStreamReader(System.in)); int maxi = Integer.parseInt(reader.readLine()); int count = 0; int big = 0; if(maxi>0){ count++; big = Math.max(maxi, count); } System.out.println(big); } }