package com.springboot.test;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

@Controller
public class MainController {

	@RequestMapping("/test")
	@ResponseBody
	public String test() {
		int a= 10;
		int b = 20;
		int c = 50;
		int d = 20;
		return "this is just testing and sum of a and b is " + (a+b+c+d);
		
	}
	
}